mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-04-30 03:16:25 +02:00
21 lines
566 B
TypeScript
21 lines
566 B
TypeScript
|
|
import {
|
||
|
|
BaseTableCellHeaderPlugin,
|
||
|
|
BaseTableCellPlugin,
|
||
|
|
BaseTablePlugin,
|
||
|
|
BaseTableRowPlugin,
|
||
|
|
} from '@platejs/table';
|
||
|
|
|
||
|
|
import {
|
||
|
|
TableCellElementStatic,
|
||
|
|
TableCellHeaderElementStatic,
|
||
|
|
TableElementStatic,
|
||
|
|
TableRowElementStatic,
|
||
|
|
} from '@/components/ui/table-node-static';
|
||
|
|
|
||
|
|
export const BaseTableKit = [
|
||
|
|
BaseTablePlugin.withComponent(TableElementStatic),
|
||
|
|
BaseTableRowPlugin.withComponent(TableRowElementStatic),
|
||
|
|
BaseTableCellPlugin.withComponent(TableCellElementStatic),
|
||
|
|
BaseTableCellHeaderPlugin.withComponent(TableCellHeaderElementStatic),
|
||
|
|
];
|