initial commit

This commit is contained in:
2021-04-06 15:03:44 +02:00
commit 606832a141
21 changed files with 9238 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
import React from 'react'
import { render } from 'react-dom'
import '../base.css'
import About from './About'
import Settings from './Settings'
import Footer from './Footer'
const Main = () => {
return (
<div className="pa4">
<About />
<Settings />
<Footer />
</div>
)
}
render(<Main />, window.document.querySelector('main'))