interface ContainerProps { children: React.ReactNode } export function Container({ children }: ContainerProps) { return (
{children}
) }