import React from "react"; type Props = { children: React.ReactNode; title: React.ReactNode; className?: string; }; export default function TitledColumn({ children, title, className }: Props) { return (
{title}
{children}
); }