import { Component, Prop, h, Fragment } from '@stencil/core' @Component({ tag: 'my-element', shadow: true, styleUrl: 'Component.css' }) export class MyElement { @Prop() count = 0 @Prop() docsHint = 'Click on the WebdriverIO logo to learn more!' normalize(name: string): string { if (name) { return name.slice(0, 1).toUpperCase() + name.slice(1).toLowerCase() } return '' } render() { return ( <>

Edit src/Component.test.tsx and save to test HMR

{this.docsHint}

) } }