import React, { useState } from 'react'; import LandingPage from './components/LandingPage'; import Dashboard from './components/Dashboard'; const App: React.FC = () => { const [view, setView] = useState<'landing' | 'dashboard'>('landing'); return ( <> {view === 'landing' ? ( setView('dashboard')} /> ) : ( setView('landing')} /> )} ); }; export default App;