import { useState } from 'react'; export default function HelloWorld(props: { msg: string }) { const [count, setCount] = useState(0); return ( <>

{props.msg}

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

); }