From 619dba5ca8c5879eea87395f8ea66b00ffd7de67 Mon Sep 17 00:00:00 2001 From: Yair Even Or Date: Tue, 9 Apr 2024 20:08:34 +0200 Subject: [PATCH] fixed a README mistake where `react.tagify` should be imported from the `src` folder and not `dist` --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f9506b8e..08c0cef7 100644 --- a/README.md +++ b/README.md @@ -620,7 +620,7 @@ const App = () => { To gain full access to Tagify's (instance) inner methods, A custom `ref` can be used: ```jsx -import Tags, {MixedTags} from "@yaireo/tagify/dist/react.tagify"; +import Tags, {MixedTags} from "@yaireo/tagify/src/react.tagify"; ... const tagifyRef = useRef()