import { AppShell } from './components/layout/AppShell'; import { Dashboard } from './components/dashboard/Dashboard'; import { DataExplorer } from './components/data/DataExplorer'; import { ParsingPage } from './components/parsing/ParsingPage'; import { AnalysisPage } from './components/analysis/AnalysisPage'; import { QueryPage } from './components/query/QueryPage'; import { RagSearchPage } from './components/rag/RagSearchPage'; import { ScuPage } from './components/scu/ScuPage'; import { MapPage } from './components/map/MapPage'; import { MagneticPage } from './components/magnetic/MagneticPage'; import { ClusterView } from './components/analysis/ClusterView'; import { useStore } from './store/useStore'; function App() { const { currentPage } = useStore(); return ( {currentPage === 'dashboard' && } {currentPage === 'data' && } {currentPage === 'parsing' && } {currentPage === 'analysis' && } {currentPage === 'query' && } {currentPage === 'rag' && } {currentPage === 'scu' && } {currentPage === 'map' && } {currentPage === 'magnetic' && } {currentPage === 'clusters' && } ); } export default App;