blob: 6ba42f06538348e667f42a6fe4e1c6a4577a4087 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
import React from 'react';
import Card from './components/Card';
import './style.css';
function App() {
return (
<div className="App">
<h1>WiFi Card</h1>
<p className="tag">
Print a simple card with your WiFi login details. Tape it to the fridge, keep it in your wallet, etc.
</p>
<p className="tag">
Your information is never sent to the server.
View the <a href="https://github.com/bndw/wifi-details">source code</a>.
</p>
<Card />
</div>
);
}
export default App;
|