| 1 | "use client"; |
| 2 | |
| 3 | import { ColumnItemPlugin, ColumnPlugin } from "@platejs/layout/react"; |
| 4 | |
| 5 | import { |
| 6 | PresentationColumnElement, |
| 7 | PresentationColumnGroupElement, |
| 8 | } from "./presentation-column-elements"; |
| 9 | |
| 10 | export const PresentationColumnKit = [ |
| 11 | ColumnPlugin.withComponent(PresentationColumnGroupElement), |
| 12 | ColumnItemPlugin.withComponent(PresentationColumnElement), |
| 13 | ]; |
| 14 |