import React from 'react'; type Props = { title: string, children: React.ReactNode, }; export const ContainerInside: React.FC = ({title, children}) => { return(
{children}
) }