chore: configure some stuff

This commit is contained in:
satyajit.happy
2019-06-09 16:55:47 +02:00
parent 32139afa3e
commit 09e1edf510
6 changed files with 2477 additions and 92 deletions

2
example/index.html Normal file
View File

@@ -0,0 +1,2 @@
<div id="root"></div>
<script src="./index.tsx"></script>

8
example/index.tsx Normal file
View File

@@ -0,0 +1,8 @@
import * as React from 'react';
import { render } from 'react-dom';
function App() {
return <h1>Hello world</h1>;
}
render(<App />, document.getElementById('root'));