Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemathinc
GitHub Repository: sagemathinc/cocalc
Path: blob/master/src/packages/frontend/editors/slate/slate-react/index.ts
1697 views
1
// Components
2
export {
3
RenderElementProps,
4
RenderLeafProps,
5
Editable,
6
} from "./components/editable";
7
export { DefaultElement } from "./components/element";
8
export { DefaultLeaf } from "./components/leaf";
9
export { Slate } from "./components/slate";
10
11
// Hooks
12
export { useEditor } from "./hooks/use-editor";
13
export { useSlateStatic } from "./hooks/use-slate-static";
14
export { useFocused } from "./hooks/use-focused";
15
export { useReadOnly } from "./hooks/use-read-only";
16
export { useSelected } from "./hooks/use-selected";
17
export { useSlate } from "./hooks/use-slate";
18
19
// Plugin
20
export { ReactEditor } from "./plugin/react-editor";
21
export { withReact } from "./plugin/with-react";
22
23