| 1 | import type { ReactNode } from "react"; |
| 2 | |
| 3 | interface ColumnProps { |
| 4 | children: ReactNode; |
| 5 | title: string; |
| 6 | } |
| 7 | |
| 8 | export const Column = ({ title, children }: ColumnProps) => ( |
| 9 | <div className="flex h-full flex-col divide-y overflow-hidden"> |
nothing calls this directly
no outgoing calls
no test coverage detected