import { FunctionComponent } from 'react' type Props = { className?: string } const TitleBar: FunctionComponent = ({ children, className }) => (
{children}
) export default TitleBar