Added base app

Has basic login UI, has methods to run speedtests
This commit is contained in:
Henry Whitaker
2020-04-08 13:57:26 +01:00
parent e9fdc98fd3
commit 0062ac6960
114 changed files with 120193 additions and 1 deletions

View File

@@ -0,0 +1,24 @@
import React, { Component } from 'react';
import ReactDOM from 'react-dom';
export default class HomePage extends Component {
constructor(props) {
super(props)
this.state = {
}
}
render() {
return (
<div>
Homepage coming soon...
</div>
);
}
}
if (document.getElementById('homePage')) {
ReactDOM.render(<HomePage />, document.getElementById('homePage'));
}