2025-11-22 16:44:20 +01:00

8 lines
264 B
TypeScript

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