import React from 'react'; interface LayoutProps { children: React.ReactNode; } const Layout: React.FC = ({ children }) => { return (
📄

PDF Workbench

All in your browser
{children}
); }; export default Layout;