import { useState } from 'preact/hooks' import './Component.css' export default function ExampleComponent () { const [count, setCount] = useState(0) return ( <>
WebdriverIO logo

WebdriverIO Component Testing

Edit src/Component.test.<%- answers.isUsingTypeScript ? `tsx` : 'jsx' %> and save to test HMR

Click on the Vite and Preact logos to learn more

) }