import { component$, useSignal } from '@builder.io/qwik' import qwikLogo from './assets/qwik.svg' import viteLogo from '/vite.svg' import './app.css' export const App = component$(() => { const count = useSignal(0) return ( <>
Edit src/app.jsx
and save to test HMR
Click on the Vite and Qwik logos to learn more
> ) })