first commit

This commit is contained in:
genio
2021-11-18 15:09:56 +01:00
commit 52759b7ce9
14 changed files with 260 additions and 0 deletions

5
frontend/index.js Normal file
View File

@@ -0,0 +1,5 @@
import ReactDOM from 'react-dom'
import { App } from './src/App'
const root = document.getElementById('root')
ReactDOM.render(<App />, root)