2024-03-07 02:29:10 +05:30
|
|
|
import Topbar from "./components/Topbar";
|
2024-04-03 06:00:18 +05:30
|
|
|
// import Sidebar from "./components/Sidebar";
|
|
|
|
|
import DataSelection from "./components/Interface"
|
2024-03-07 04:02:32 +05:30
|
|
|
import { ConfigProvider } from 'antd';
|
2024-03-07 02:29:10 +05:30
|
|
|
import { BrowserRouter } from 'react-router-dom'
|
2024-03-03 16:44:16 +05:30
|
|
|
|
2024-03-07 02:29:10 +05:30
|
|
|
const App = () => (
|
2024-03-07 03:58:01 +05:30
|
|
|
<ConfigProvider
|
|
|
|
|
theme={{
|
|
|
|
|
token: {
|
2024-03-07 03:59:40 +05:30
|
|
|
colorPrimary: '#ff00c3',
|
2024-03-07 04:01:28 +05:30
|
|
|
borderRadius: 2,
|
2024-03-07 03:58:01 +05:30
|
|
|
},
|
2024-03-07 04:02:48 +05:30
|
|
|
}}
|
2024-03-07 03:58:01 +05:30
|
|
|
>
|
2024-03-07 04:03:15 +05:30
|
|
|
<BrowserRouter>
|
|
|
|
|
<Topbar />
|
2024-04-03 06:00:18 +05:30
|
|
|
{/* <Sidebar /> */}
|
|
|
|
|
<DataSelection />
|
2024-03-07 04:03:15 +05:30
|
|
|
</BrowserRouter>
|
2024-03-07 03:58:01 +05:30
|
|
|
</ConfigProvider>
|
2024-03-07 02:29:10 +05:30
|
|
|
);
|
2024-03-03 16:44:16 +05:30
|
|
|
|
2024-03-07 03:50:41 +05:30
|
|
|
export default App;
|