
import * as ReactDOM from 'react-dom';
import * as React from 'react';
import * as bootstrap from 'bootstrap'; // just to link the js
import * as BS from 'react-bootstrap';

import {HelloWorld} from './components/HelloWorld';

ReactDOM.render(<HelloWorld/>, document.getElementById("main"));

