import React from "react" import * as SC from "./styles" interface ContainerProps { children: React.ReactNode } const Container = ({ children, ...restProps }: ContainerProps): JSX.Element => ( {children} ) export default Container