// Container Component const Container = ({ children }: { children: React.ReactNode }) => (
{children}
); export default Container;