mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-04-26 09:16:22 +02:00
20 lines
439 B
TypeScript
20 lines
439 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>
|
|
),
|
|
},
|
|
}),
|
|
];
|
|
|