Skip to content

Latest commit

 

History

History
24 lines (14 loc) · 542 Bytes

README.md

File metadata and controls

24 lines (14 loc) · 542 Bytes

Custom Elements - Props

Goals:

Commands

  • Server : npm run start-03
  • Tests : npm test -- -t 03

Files to modify

  1. components/stencil-hello/stencil-hello.tsx

Description

  1. Create a @Prop firstname of type string with 'John' as default value
  2. Create a @Prop lastname of type string with 'Doe' as default value
  3. Implement render so it returns <h1>Hello John Doe!</h1>

Next

Custom Elements - Events