返回 presentation-ai
doc-fixed-toolbar-kit.tsx
根目录 / src / components / plate / plugins / doc-fixed-toolbar-kit.tsx
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
15 lines Plain Text