Frontend template import

This commit is contained in:
aronmal 2022-08-06 00:21:47 +02:00
parent 01d0575505
commit 79d5f23078
Signed by: aronmal
GPG key ID: 816B7707426FC612
16 changed files with 28861 additions and 0 deletions

13
frontend/src/index.tsx Normal file
View 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>
);