Lightning Web Component (LWC) is a modern Salesforce UI framework used to build fast, reusable, and lightweight components for the Salesforce platform. It includes HTML, CSS, Javascript and XML file

HTML Code Below

				
					<template>
    <lightning-card title="My First LWC" icon-name="custom:custom14">
        <div class="slds-p-around_medium">
            <p>Hello, {greeting}!</p>

            <lightning-input 
                label="Enter Your Name" 
                value={greeting} 
                onchange={handleChange}>
            </lightning-input>

            <lightning-button 
                label="Click Me" 
                variant="brand" 
                onclick={handleClick}>
            </lightning-button>
        </div>
    </lightning-card>
</template>

				
			
Scroll to Top