Frontend template import
This commit is contained in:
parent
01d0575505
commit
79d5f23078
16 changed files with 28861 additions and 0 deletions
13
frontend/src/index.tsx
Normal file
13
frontend/src/index.tsx
Normal file
|
@ -0,0 +1,13 @@
|
|||
import React from 'react';
|
||||
import ReactDOM from 'react-dom/client';
|
||||
import './index.scss';
|
||||
import App from './App';
|
||||
|
||||
const root = ReactDOM.createRoot(
|
||||
document.getElementById('root') as HTMLElement
|
||||
);
|
||||
root.render(
|
||||
<React.StrictMode>
|
||||
<App />
|
||||
</React.StrictMode>
|
||||
);
|
Loading…
Add table
Add a link
Reference in a new issue