diff --git a/src/components/VPBuilder.tsx b/src/components/VPBuilder.tsx new file mode 100644 index 0000000..2af3b53 --- /dev/null +++ b/src/components/VPBuilder.tsx @@ -0,0 +1,43 @@ +import { + defaultTextOptions, + VPExplorer, + EntrySelect, + Types as T, +} from "@lingdocs/pashto-inflector"; +import { + nouns, + verbs, +} from "../words/words"; +import { useStickyState } from "@lingdocs/pashto-inflector"; + +function VPBuilder() { + const [entry, setEntry] = useStickyState(undefined, "vEntrySelect"); + return
+
+
Verb:
+ +
+
+ {entry + ? + :
+ Choose a verb to start building +
} +
+
; + +} + +export default VPBuilder;