diff options
author | Michael Muré <batolettre@gmail.com> | 2018-07-16 22:25:50 +0200 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2018-07-16 22:25:50 +0200 |
commit | ead4511250deb877e1867c2e38cbee9c27deb299 (patch) | |
tree | 09572e68634c7241eff7cb65bf94c02a6aac9a50 /webui/src/App.js | |
parent | d659d74131996cea06e39f90114e21b36e61f6fc (diff) | |
download | git-bug-ead4511250deb877e1867c2e38cbee9c27deb299.tar.gz |
add the infrastructure for an embedded web UI + command
Diffstat (limited to 'webui/src/App.js')
-rw-r--r-- | webui/src/App.js | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/webui/src/App.js b/webui/src/App.js new file mode 100644 index 00000000..203067e4 --- /dev/null +++ b/webui/src/App.js @@ -0,0 +1,21 @@ +import React, { Component } from 'react'; +import logo from './logo.svg'; +import './App.css'; + +class App extends Component { + render() { + return ( + <div className="App"> + <header className="App-header"> + <img src={logo} className="App-logo" alt="logo" /> + <h1 className="App-title">Welcome to React</h1> + </header> + <p className="App-intro"> + To get started, edit <code>src/App.js</code> and save to reload. + </p> + </div> + ); + } +} + +export default App; |