Examples of Vlocity/SF LWC components (in various states of working)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

7 lines
311 B

4 years ago
  1. <template>
  2. <lightning-card title="HelloWorld" icon-name="custom:custom14">
  3. <div class="slds-m-around_medium">
  4. <p>Hello, {greeting}!</p>
  5. <lightning-input label="Name" value={greeting} onchange={changeHandler}></lightning-input>
  6. </div>
  7. </lightning-card>
  8. </template>