Loads of stuff, check roadmap changes in the README :P

This commit is contained in:
Miguel de la Cruz 2021-09-12 20:37:51 +02:00
parent e1fca030bc
commit 68ae33e78a
15 changed files with 17179 additions and 10 deletions

12
webapp/src/index.html Normal file
View file

@ -0,0 +1,12 @@
<!doctype html>
<html>
<head>
<meta charset="utf8" />
<title>Craban</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="index.js"></script>
</body>
</html>

7
webapp/src/index.js Normal file
View file

@ -0,0 +1,7 @@
import ReactDOM from 'react-dom'
const App = () => {
return <h1>Hello Craban!!</h1>
}
ReactDOM.render(<App />, document.getElementById('app'))