Created
May 27, 2019 11:06
-
-
Save sfmishra/d6b57b872183d9aea6d132c00e2a7502 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { LightningElement, api } from 'lwc'; | |
import Name_Field from '@salesforce/schema/Account.Name'; | |
import Revenue_Field from '@salesforce/schema/Account.AnnualRevenue'; | |
import Inductry_Field from '@salesforce/schema/Account.Industry'; | |
export default class LightningRecordFormModeEdit extends LightningElement { | |
@api recordId; | |
@api objectApiName; | |
fields = [Name_Field, Revenue_Field, Inductry_Field]; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment