- Learn about @Prop Decorator
- Server :
npm run start-03
- Tests :
npm test -- -t 03
- components/stencil-hello/stencil-hello.tsx
- Create a @Prop
firstname
of typestring
with'John'
as default value - Create a @Prop
lastname
of typestring
with'Doe'
as default value - Implement
render
so it returns<h1>Hello John Doe!</h1>