import {PropsWithChildren} from "react"; import styles from './Wrapper.module.css' const Wrapper = ({ children } : PropsWithChildren) => { return(
{children}
); }; export default Wrapper;