import React from 'react'; import { APP_VERSION } from '../version'; interface LayoutProps { children: React.ReactNode; onOpenHelp?: () => void; } const Layout: React.FC = ({ children, onOpenHelp }) => { return (
📄

PDF Workbench

All in your browser
{onOpenHelp && ( )}
v{APP_VERSION}
{children}
); }; export default Layout;