import styles from "./emptyPage.module.scss"; import { FC } from "react"; const EmptyPage: FC = ({ children }) => { return (
{children}
); }; export default EmptyPage;