diff options
| author | Ben Woodward <ben@bdw.to> | 2021-07-04 16:48:10 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-07-04 16:48:10 -0700 |
| commit | 52ff61635b1cbd4b024ae882b606cfb64d6cc897 (patch) | |
| tree | de906f5b551d28d92048dcb65a8048fc718d3b9f /src/App.js | |
| parent | 313e5f8146a1f853269c2958fbbf4aa26c2422a8 (diff) | |
Prettier formatting (#33)
* Add prettier
* Format code
Diffstat (limited to 'src/App.js')
| -rw-r--r-- | src/App.js | 20 |
1 files changed, 12 insertions, 8 deletions
| @@ -1,25 +1,29 @@ | |||
| 1 | import React from 'react'; | 1 | import React from 'react'; |
| 2 | import Card from './components/Card'; | 2 | import { Card } from './components/Card'; |
| 3 | import './style.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 | 8 | <h1> | |
| 9 | <h1><span role="img" aria-label="antenna-bars">📶</span> WiFi Card</h1> | 9 | <span role="img" aria-label="antenna-bars"> |
| 10 | 📶 | ||
| 11 | </span> | ||
| 12 | WiFi Card | ||
| 13 | </h1> | ||
| 10 | 14 | ||
| 11 | <p className="tag"> | 15 | <p className="tag"> |
| 12 | Print a simple card with your WiFi login details. Tape it to the fridge, keep it in your wallet, etc. | 16 | Print a simple card with your WiFi login details. Tape it to the fridge, |
| 17 | keep it in your wallet, etc. | ||
| 13 | </p> | 18 | </p> |
| 14 | 19 | ||
| 15 | <p className="tag"> | 20 | <p className="tag"> |
| 16 | Your WiFi information is never sent to the server. | 21 | Your WiFi information is never sent to the server. No tracking, |
| 17 | No tracking, analytics, or fingerprinting are used on this website. | 22 | analytics, or fingerprinting are used on this website. View the{' '} |
| 18 | View the <a href="https://github.com/bndw/wifi-card">source code</a>. | 23 | <a href="https://github.com/bndw/wifi-card">source code</a>. |
| 19 | </p> | 24 | </p> |
| 20 | 25 | ||
| 21 | <Card /> | 26 | <Card /> |
| 22 | |||
| 23 | </div> | 27 | </div> |
| 24 | ); | 28 | ); |
| 25 | } | 29 | } |
