import { FC, ReactNode } from "react"; const Panel: FC<{ title: string; children: ReactNode }> = ({ title, children, }) => { return (