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