MCPcopy
hub / github.com/vercel/streamdown / ColumnProps

Interface ColumnProps

apps/test/app/components/column.tsx:3–6  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected