mirror of
https://github.com/status-im/snt-gas-relay.git
synced 2025-01-19 10:51:08 +00:00
17 lines
348 B
JavaScript
17 lines
348 B
JavaScript
|
import React, {Component, Fragment} from 'react';
|
||
|
import Body from './components/body';
|
||
|
import Header from './components/header';
|
||
|
import ReactDOM from 'react-dom';
|
||
|
|
||
|
|
||
|
class App extends Component {
|
||
|
render(){
|
||
|
return <Fragment>
|
||
|
<Header />
|
||
|
<Body />
|
||
|
</Fragment>;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
ReactDOM.render(<App></App>, document.getElementById('app'));
|