import React from "react"; import styles from "./Container.module.css"; type Props = { children: React.ReactNode; className?: string; }; const Container = ({ children, className = "" }: Props) => { return
{children}
; }; export default Container;