mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-04-25 16:56:22 +02:00
19 lines
411 B
TypeScript
19 lines
411 B
TypeScript
"use client";
|
|
|
|
import { createPlatePlugin } from "platejs/react";
|
|
|
|
import { FixedToolbar } from "@/components/ui/fixed-toolbar";
|
|
import { FixedToolbarButtons } from "@/components/ui/fixed-toolbar-buttons";
|
|
|
|
export const FixedToolbarKit = [
|
|
createPlatePlugin({
|
|
key: "fixed-toolbar",
|
|
render: {
|
|
beforeEditable: () => (
|
|
<FixedToolbar>
|
|
<FixedToolbarButtons />
|
|
</FixedToolbar>
|
|
),
|
|
},
|
|
}),
|
|
];
|