1. import { LightningElement } from 'lwc'; import LightningAlert from "lightning/alert"; import LightningPrompt from "lightning/prompt"; import LightningConfirm from "lightning/confirm"; export default class NotificationLWC extends LightningElement { async handleAlert(){ await LightningAlert.open({ message : "Sample Alert Message", theme : "error", label: "Alert Header" }) .then(()=>{ console.lo..