- Learn about @Component decorator
- Use JSX
- Server :
npm run start-01
- Tests :
npm test -- -t 01
- components/stencil-hello/stencil-hello.tsx
Write the following code using StencilJS:
class MyComponent extends HTMLElement {
constructor() {
super();
}
connectedCallback() {
this.innerHTML = "<div>Hello World</div>";
}
}