import React from 'react';
import { render } from 'react-dom';
import App from './dapp';
render(
<App />,
document.getElementById('app')
);