(props: unknown)
| 19 | } |
| 20 | |
| 21 | export function Columns(props: unknown) { |
| 22 | const { left, right } = parseProps( |
| 23 | props, |
| 24 | Block.extend({ left: Block, right: Block }), |
| 25 | ) |
| 26 | return ( |
| 27 | <div className="flex gap-2 -mx-8"> |
| 28 | <div className="flex-1 min-w-0">{left.children}</div> |
| 29 | <div className="flex-1 min-w-0">{right.children}</div> |
| 30 | </div> |
| 31 | ) |
| 32 | } |
| 33 | import { z } from "zod" |
| 34 | import { |
| 35 | Selection, |
nothing calls this directly
no test coverage detected
searching dependent graphs…