chore(client): update sctucture after switching to vite
This commit is contained in:
15
client/src/main.tsx
Normal file
15
client/src/main.tsx
Normal file
@@ -0,0 +1,15 @@
|
||||
import React from 'react';
|
||||
import ReactDOM from 'react-dom/client';
|
||||
import '@/index.css';
|
||||
import App from '@/App';
|
||||
import AppWrapper from '@/config/AppWrapper';
|
||||
|
||||
const root = ReactDOM.createRoot(
|
||||
document.getElementById('root') as HTMLElement
|
||||
);
|
||||
|
||||
root.render(
|
||||
<AppWrapper>
|
||||
<App />
|
||||
</AppWrapper>
|
||||
);
|
Reference in New Issue
Block a user