diff --git a/README.md b/README.md index 03e25bb..455981d 100644 --- a/README.md +++ b/README.md @@ -11,9 +11,18 @@ npm install react-native-scribble ## Usage ```jsx - const signatureProps = useSignaturePad(); - - + const signatureProps = useSvgCapture(); + const { clearPad, getFilePath } = signatureProps; + + const handleFileGeneration = async () => { + const filePath = await getFilePath(); + }; + // ... + <> + +