aboutsummaryrefslogtreecommitdiffstats
path: root/src/App.js
diff options
context:
space:
mode:
authorbndw <benjamindwoodward@gmail.com>2020-05-30 10:15:45 -0700
committerbndw <benjamindwoodward@gmail.com>2020-05-30 10:15:45 -0700
commite177a74c9ea505284c8debf086f785a43d88f90b (patch)
treeb740f156a74c37bdfeae29b39617ca6a25307e8f /src/App.js
Initialize project using Create React App
Diffstat (limited to 'src/App.js')
-rw-r--r--src/App.js26
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 @@
1import React from 'react';
2import logo from './logo.svg';
3import './App.css';
4
5function 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
26export default App;