@vite-pwa/create-pwa
Version:
PWA Templates
46 lines (43 loc) • 1.22 kB
JSX
import { useState } from 'preact/hooks'
import preactLogo from './assets/preact.svg'
import appLogo from '/favicon.svg'
import PWABadge from './PWABadge.jsx'
import './app.css'
export function App() {
const [count, setCount] = useState(0)
return (
<>
<div>
<a href="https://vite.dev" target="_blank">
<img src={appLogo} class="logo" alt="App logo" />
</a>
<a href="https://preactjs.com" target="_blank">
<img src={preactLogo} class="logo preact" alt="Preact logo" />
</a>
</div>
<h1>Vite PWA + Preact</h1>
<div class="card">
<button onClick={() => setCount((count) => count + 1)}>
count is {count}
</button>
<p>
Edit <code>src/app.jsx</code> and save to test HMR
</p>
</div>
<p>
Check out{' '}
<a
href="https://preactjs.com/guide/v10/getting-started#create-a-vite-powered-preact-app"
target="_blank"
>
create-preact
</a>
, the official Preact + Vite starter
</p>
<p class="read-the-docs">
Click on the Vite and Preact logos to learn more
</p>
<PWABadge />
</>
)
}