Initial commit

This commit is contained in:
Robert Long 2021-07-16 14:22:03 -07:00
commit 7a601403e8
13 changed files with 3141 additions and 0 deletions

11
src/main.jsx Normal file
View file

@ -0,0 +1,11 @@
import React from 'react'
import ReactDOM from 'react-dom'
import './index.css'
import App from './App'
ReactDOM.render(
<React.StrictMode>
<App />
</React.StrictMode>,
document.getElementById('root')
)