hackathon-registration-dapp/app/js/index.js

20 lines
431 B
JavaScript
Raw Normal View History

2018-10-03 13:36:13 +00:00
import React, { Fragment } from 'react';
import ReactDOM from 'react-dom';
2018-10-03 12:45:56 +00:00
import EmbarkJS from 'Embark/EmbarkJS';
2018-10-03 13:36:13 +00:00
import web3 from 'Embark/web3'
2018-10-03 12:45:56 +00:00
//import SimpleStorage from 'Embark/contracts/SimpleStorage';
2018-10-03 13:36:13 +00:00
class App extends React.Component {
constructor(props) {
super(props);
}
render(){
return <h1>Hello World</h1>
}
}
2018-10-03 12:45:56 +00:00
2018-10-03 13:36:13 +00:00
ReactDOM.render(<App></App>, document.getElementById('app'));