This file contains 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 } from 'lwc'; | |
export default class CreateAccount extends LightningElement { | |
handleSuccess(event) { | |
// Account record has been created | |
// You can get the recordId from the event.detail.id | |
const recordId = event.detail.id; | |
console.log('New Account created with Id: ' + recordId); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment