Loads of stuff, check roadmap changes in the README :P
This commit is contained in:
parent
e1fca030bc
commit
68ae33e78a
15 changed files with 17179 additions and 10 deletions
12
webapp/src/index.html
Normal file
12
webapp/src/index.html
Normal 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
7
webapp/src/index.js
Normal file
|
@ -0,0 +1,7 @@
|
|||
import ReactDOM from 'react-dom'
|
||||
|
||||
const App = () => {
|
||||
return <h1>Hello Craban!!</h1>
|
||||
}
|
||||
|
||||
ReactDOM.render(<App />, document.getElementById('app'))
|
Loading…
Add table
Add a link
Reference in a new issue