type SubPanelProps = { children: React.ReactNode; }; export default function SubPanel(props: SubPanelProps): JSX.Element { return (
{props.children}
); }