rebuild project with rsbuild

This commit is contained in:
2024-03-27 17:41:49 +03:00
parent be07d304ee
commit f92171ff84
37 changed files with 1368 additions and 15863 deletions

16
frontend/app/src/App.tsx Normal file
View File

@ -0,0 +1,16 @@
import { ConfigProvider } from 'antd';
import './App.css';
import HeaderComponent from './components/HeaderComponent';
import { theme } from './config/style';
const App = () => {
return (
<ConfigProvider theme={theme}>
<div className="content">
<HeaderComponent />
</div>
</ConfigProvider>
);
};
export default App;