LWC Stack is Lightning Web Component tutorial series by Salesforce MVP Kapil Batra. In this series you will find LWC tutorials from beginner to intermediate level.
So if you are working on it or planning to learn LWC then this video series is for you. Let's learn and grow together !
Please check complete code below from LWC Stack EP-22
HTML
1 2 3 4 5 6 7 8 9 10 11 | <template> <lightning-card title="Static Resource" icon-name="utility:user"> <div class="slds-var-m-around_medium"> <div style="padding:10px"> <img src={salesforcelogourl} /> <img src={salesforceboltlogourl} /> </div> </div> </lightning-card> </template> |
JS
1 2 3 4 5 6 7 8 | import { LightningElement } from 'lwc'; import salesforcelogo from '@salesforce/resourceUrl/salesforcelogo'; import salesforceboltlogo from '@salesforce/resourceUrl/salesforceboltlogo'; export default class StaticResource extends LightningElement { salesforcelogourl = salesforcelogo; salesforceboltlogourl = salesforceboltlogo; } |
Checkout complete video tutorial below
0 Comments