// v3 main app with page state function App() { const [currentPage, setCurrentPage] = React.useState('home'); window.navigateTo = (page) => setCurrentPage(page); window.getCurrentPage = () => currentPage; return (
{currentPage === 'home' ? ( <>
); } const root = ReactDOM.createRoot(document.getElementById('app')); root.render();