diff options
author | Galen Guyer <galen@galenguyer.com> | 2020-11-13 20:33:26 -0500 |
---|---|---|
committer | Galen Guyer <galen@galenguyer.com> | 2020-11-13 20:33:26 -0500 |
commit | a0746693e981b5cf2288f467913745b56f2be468 (patch) | |
tree | 055d8f916d95788043f33a44b9e2959aaeb75eff /src/App.js |
Initialize project using Create React App
Diffstat (limited to 'src/App.js')
-rw-r--r-- | src/App.js | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/App.js b/src/App.js new file mode 100644 index 0000000..3784575 --- /dev/null +++ b/src/App.js @@ -0,0 +1,25 @@ +import logo from './logo.svg'; +import './App.css'; + +function App() { + return ( + <div className="App"> + <header className="App-header"> + <img src={logo} className="App-logo" alt="logo" /> + <p> + Edit <code>src/App.js</code> and save to reload. + </p> + <a + className="App-link" + href="https://reactjs.org" + target="_blank" + rel="noopener noreferrer" + > + Learn React + </a> + </header> + </div> + ); +} + +export default App; |