import React from 'react'; import { Layout } from '../components/ui'; interface IEmptyPage { children: React.ReactNode; } const EmptyPage: React.FC = ({ children }) => { return ( <> {children} ); }; export default EmptyPage;