import React from 'react' import Text from 'components/Text' interface Props { children: React.ReactNode title: string } export default function Container(props: Props) { return (
{props.title}
{props.children}
) }