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