// Top-level — design canvas with desktop and tablet artboards const { DesignCanvas, DCSection, DCArtboard } = window; const { ChromeWindow } = window; const { DesktopDashboard, TabletDashboard } = window.OpsLayouts; // Tablet bezel — simple frame, since we want to communicate "tablet" function TabletShell({ children }) { return (
{children}
); } function App() { return (
); } const root = ReactDOM.createRoot(document.getElementById('root')); root.render();