diff options
Diffstat (limited to 'src/App.js')
| -rw-r--r-- | src/App.js | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/App.js b/src/App.js new file mode 100644 index 0000000..ce9cbd2 --- /dev/null +++ b/src/App.js | |||
| @@ -0,0 +1,26 @@ | |||
| 1 | import React from 'react'; | ||
| 2 | import logo from './logo.svg'; | ||
| 3 | import './App.css'; | ||
| 4 | |||
| 5 | function App() { | ||
| 6 | return ( | ||
| 7 | <div className="App"> | ||
| 8 | <header className="App-header"> | ||
| 9 | <img src={logo} className="App-logo" alt="logo" /> | ||
| 10 | <p> | ||
| 11 | Edit <code>src/App.js</code> and save to reload. | ||
| 12 | </p> | ||
| 13 | <a | ||
| 14 | className="App-link" | ||
| 15 | href="https://reactjs.org" | ||
| 16 | target="_blank" | ||
| 17 | rel="noopener noreferrer" | ||
| 18 | > | ||
| 19 | Learn React | ||
| 20 | </a> | ||
| 21 | </header> | ||
| 22 | </div> | ||
| 23 | ); | ||
| 24 | } | ||
| 25 | |||
| 26 | export default App; | ||
