rebuild project with rsbuild
This commit is contained in:
16
frontend/app/src/App.tsx
Normal file
16
frontend/app/src/App.tsx
Normal 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;
|
||||
Reference in New Issue
Block a user