import { useState } from 'react'; export default function HelloWorld(props: { msg: string }) { const [count, setCount] = useState(0); return ( <>
Edit
src/components/HelloWorld.tsx
{' '}
to test HMR
Check out create-crxjs , the official starter
Click on the Vite, React and CRXJS logos to learn more
> ); }