-
-
Notifications
You must be signed in to change notification settings - Fork 242
Expand file tree
/
Copy pathApp.jsx
More file actions
22 lines (21 loc) · 714 Bytes
/
App.jsx
File metadata and controls
22 lines (21 loc) · 714 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import './App.css'
import { Button, StyledCode } from './Button.jsx'
export const App = () => (
<div>
<div>
<a href="https://vite.dev" target="_blank" rel="noreferrer">
<img src="/vite.svg" className="logo" alt="Vite logo" />
</a>
<a href="https://emotion.sh/" target="_blank" rel="noreferrer">
<img src="https://emotion.sh/logo-96x96.png" className="logo emotion" alt="Emotion logo" />
</a>
</div>
<div className="card">
<Button color="#646cff" />
<p>
Edit <StyledCode>src/Button.tsx</StyledCode> and save to test HMR
</p>
</div>
<p className="read-the-docs">Click on the Vite and Emotion logos to learn more</p>
</div>
)