diff options
Diffstat (limited to 'src/App.js')
| -rw-r--r-- | src/App.js | 32 |
1 files changed, 16 insertions, 16 deletions
| @@ -1,24 +1,24 @@ | |||
| 1 | import React from 'react'; | 1 | import React from 'react'; |
| 2 | import logo from './logo.svg'; | 2 | import Card from './components/Card'; |
| 3 | import './App.css'; | 3 | import './style.css'; |
| 4 | 4 | ||
| 5 | function App() { | 5 | function 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 | } |
