import { useState } from 'react' 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 WebdriverIO logo to learn more

) }