import { PropsWithChildren } from 'react'; const Layout = ({ children }: PropsWithChildren) => { return (
App Installation
{children}
); }; export default Layout;