How to refer or import the custom Labels in LWC?

In order to bring/refer custom labels inside LWC component, You need to import it through ‘@salesforce/label’ scoped module. Sytax: import lableName from ‘@salesforce/label/NameSpace.labelNameThatWasCreatedInSFDC’; Note: Here the NameSpace will be ‘c’ for the Labels that were created without a namespace in SFDC. If the label was created with in a package, Then we have to given […]