aboutsummaryrefslogtreecommitdiffstats
path: root/src/App.js
diff options
context:
space:
mode:
authorbndw <benjamindwoodward@gmail.com>2020-05-30 12:33:16 -0700
committerbndw <benjamindwoodward@gmail.com>2020-05-31 09:02:22 -0700
commit6371e7794d2fa9ba5b79f267219e50e885057342 (patch)
tree3441d6087befb8740d098c88385839ef20bb1b65 /src/App.js
parente177a74c9ea505284c8debf086f785a43d88f90b (diff)
Initial commit
Diffstat (limited to 'src/App.js')
-rw-r--r--src/App.js32
1 files changed, 16 insertions, 16 deletions
diff --git a/src/App.js b/src/App.js
index ce9cbd2..6ba42f0 100644
--- a/src/App.js
+++ b/src/App.js
@@ -1,24 +1,24 @@
1import React from 'react'; 1import React from 'react';
2import logo from './logo.svg'; 2import Card from './components/Card';
3import './App.css'; 3import './style.css';
4 4
5function App() { 5function App() {
6 return ( 6 return (
7 <div className="App"> 7 <div className="App">
8 <header className="App-header"> 8
9 <img src={logo} className="App-logo" alt="logo" /> 9 <h1>WiFi Card</h1>
10 <p> 10
11 Edit <code>src/App.js</code> and save to reload. 11 <p className="tag">
12 </p> 12 Print a simple card with your WiFi login details. Tape it to the fridge, keep it in your wallet, etc.
13 <a 13 </p>
14 className="App-link" 14
15 href="https://reactjs.org" 15 <p className="tag">
16 target="_blank" 16 Your information is never sent to the server.
17 rel="noopener noreferrer" 17 View the <a href="https://github.com/bndw/wifi-details">source code</a>.
18 > 18 </p>
19 Learn React 19
20 </a> 20 <Card />
21 </header> 21
22 </div> 22 </div>
23 ); 23 );
24} 24}