module federation

This commit is contained in:
2025-08-26 20:32:13 -04:00
parent a7d5425124
commit 2772dcc966
46 changed files with 52051 additions and 103 deletions

View File

@ -0,0 +1,24 @@
import React from 'react';
import ReactDOM from 'react-dom/client';
import { BrowserRouter as Router } from 'react-router-dom';
import { ConfigProvider, theme } from 'antd';
import App from './App';
import './App.css';
const root = ReactDOM.createRoot(
document.getElementById('root') as HTMLElement
);
root.render(
<React.StrictMode>
<ConfigProvider
theme={{
algorithm: theme.defaultAlgorithm,
}}
>
<Router>
<App />
</Router>
</ConfigProvider>
</React.StrictMode>
);