| 1 | "use client"; |
| 2 | |
| 3 | import { createPlatePlugin } from "platejs/react"; |
| 4 | |
| 5 | import { DocFixedToolbar } from "@/components/plate/ui/doc-fixed-toolbar"; |
| 6 | |
| 7 | export const DocFixedToolbarKit = [ |
| 8 | createPlatePlugin({ |
| 9 | key: "doc-fixed-toolbar", |
| 10 | render: { |
| 11 | beforeContainer: () => <DocFixedToolbar />, |
| 12 | }, |
| 13 | }), |
| 14 | ]; |
| 15 |