Add new RAG dashboard feature including: - Main application layout with header and sidebar - Multiple pages (Home, KnowledgeBase, PipelineConfig, Dashboard, MCP) - Theme configuration and styling - Routing setup with protected routes - Login page and authentication flow - Various UI components and mock data for dashboard views
18 lines
378 B
TypeScript
18 lines
378 B
TypeScript
import { BrowserRouter } from 'react-router-dom';
|
|
import { CssBaseline, ThemeProvider } from '@mui/material';
|
|
import { theme } from './theme';
|
|
import AppRoutes from './routes';
|
|
|
|
function App() {
|
|
return (
|
|
<ThemeProvider theme={theme}>
|
|
<CssBaseline />
|
|
<BrowserRouter>
|
|
<AppRoutes />
|
|
</BrowserRouter>
|
|
</ThemeProvider>
|
|
);
|
|
}
|
|
|
|
export default App;
|