Skip to content

Instantly share code, notes, and snippets.

@sfmishra
Created May 27, 2019 11:06
Show Gist options
  • Save sfmishra/d6b57b872183d9aea6d132c00e2a7502 to your computer and use it in GitHub Desktop.
Save sfmishra/d6b57b872183d9aea6d132c00e2a7502 to your computer and use it in GitHub Desktop.
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