import type { OnlyChildrenProps } from './types/OnlyChildrenProps' import { StyledContainer } from './Container.styles'; const Container = ({ children }: OnlyChildrenProps) => { return {children}; }; export default Container;