diff options
Diffstat (limited to 'src/zoom/index.ts')
-rw-r--r-- | src/zoom/index.ts | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/zoom/index.ts b/src/zoom/index.ts new file mode 100644 index 0000000..4ce07ca --- /dev/null +++ b/src/zoom/index.ts @@ -0,0 +1,9 @@ +export { ZoomProvider, useZoom } from "./hooks/useZoom"; +import App from "./App"; +import FullText from "./FullText"; +import Paragraph from "./Paragraph"; +import Sentence from "./Paragraph"; +import SpacyClause from "./SpacyClause"; +import type * as Types from "./logic/types"; + +export { App, Paragraph, FullText, Sentence, SpacyClause, Types }; |