diff options
author | pacien | 2018-10-10 02:50:40 +0200 |
---|---|---|
committer | pacien | 2018-10-10 02:50:40 +0200 |
commit | a3807bf0fbc406dc336c8a07e4d4426a510c7249 (patch) | |
tree | 1f2990b621025bc5b35d44880bf1f685466cb7b8 /src/App.js | |
parent | a0beb9d8a9e67cbdd95492b1e118c794ce442819 (diff) | |
download | jacoco-viewer-a3807bf0fbc406dc336c8a07e4d4426a510c7249.tar.gz |
Bootstrap React app
Diffstat (limited to 'src/App.js')
-rw-r--r-- | src/App.js | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/src/App.js b/src/App.js new file mode 100644 index 0000000..7e261ca --- /dev/null +++ b/src/App.js | |||
@@ -0,0 +1,28 @@ | |||
1 | import React, { Component } from 'react'; | ||
2 | import logo from './logo.svg'; | ||
3 | import './App.css'; | ||
4 | |||
5 | class App extends Component { | ||
6 | render() { | ||
7 | return ( | ||
8 | <div className="App"> | ||
9 | <header className="App-header"> | ||
10 | <img src={logo} className="App-logo" alt="logo" /> | ||
11 | <p> | ||
12 | Edit <code>src/App.js</code> and save to reload. | ||
13 | </p> | ||
14 | <a | ||
15 | className="App-link" | ||
16 | href="https://reactjs.org" | ||
17 | target="_blank" | ||
18 | rel="noopener noreferrer" | ||
19 | > | ||
20 | Learn React | ||
21 | </a> | ||
22 | </header> | ||
23 | </div> | ||
24 | ); | ||
25 | } | ||
26 | } | ||
27 | |||
28 | export default App; | ||