mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
20 lines
554 B
TypeScript
20 lines
554 B
TypeScript
|
// styles
|
||
|
// import "./styles/tailwind.css";
|
||
|
// import "./styles/editor.css";
|
||
|
|
||
|
// utils
|
||
|
export * from "./lib/utils";
|
||
|
export { startImageUpload } from "./ui/plugins/upload-image";
|
||
|
|
||
|
// components
|
||
|
export { EditorContainer } from "./ui/components/editor-container";
|
||
|
export { EditorContentWrapper } from "./ui/components/editor-content";
|
||
|
|
||
|
// hooks
|
||
|
export { useEditor } from "./ui/hooks/useEditor";
|
||
|
export { useReadOnlyEditor } from "./ui/hooks/useReadOnlyEditor";
|
||
|
|
||
|
// helper items
|
||
|
export * from "./ui/menus/menu-items";
|
||
|
export * from "./lib/editor-commands";
|