Files
parcer/ui/src/App.tsx

22 lines
439 B
TypeScript
Raw Normal View History

2024-03-07 02:29:10 +05:30
import Topbar from "./components/Topbar";
2024-04-04 23:42:11 +05:30
import Sidebar from "./components/Sidebar";
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-04 23:42:11 +05:30
<Sidebar />
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;