aboutsummaryrefslogtreecommitdiffstats
path: root/src/App.js
diff options
context:
space:
mode:
authorBen Woodward <ben@bdw.to>2021-07-04 16:48:10 -0700
committerGitHub <noreply@github.com>2021-07-04 16:48:10 -0700
commit52ff61635b1cbd4b024ae882b606cfb64d6cc897 (patch)
treede906f5b551d28d92048dcb65a8048fc718d3b9f /src/App.js
parent313e5f8146a1f853269c2958fbbf4aa26c2422a8 (diff)
Prettier formatting (#33)
* Add prettier * Format code
Diffstat (limited to 'src/App.js')
-rw-r--r--src/App.js20
1 files changed, 12 insertions, 8 deletions
diff --git a/src/App.js b/src/App.js
index ef4859c..0895668 100644
--- a/src/App.js
+++ b/src/App.js
@@ -1,25 +1,29 @@
1import React from 'react'; 1import React from 'react';
2import Card from './components/Card'; 2import { Card } from './components/Card';
3import './style.css'; 3import './style.css';
4 4
5function App() { 5function 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>&nbsp; WiFi Card</h1> 9 <span role="img" aria-label="antenna-bars">
10 📶
11 </span>
12 &nbsp; 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}