Skip to content

Instantly share code, notes, and snippets.

@TheShubhamVsnv
Created May 14, 2023 13:54
Show Gist options
  • Save TheShubhamVsnv/6a979f43cdd364effe4d88573c5fecd8 to your computer and use it in GitHub Desktop.
Save TheShubhamVsnv/6a979f43cdd364effe4d88573c5fecd8 to your computer and use it in GitHub Desktop.
Horizontal Tabs
<template>
<lightning-card title="Tab Example"> <!-- Lightning card component -->
<div class="slds-tabs_default"> <!-- Container for the tabs -->
<lightning-tabset variant="default"> <!-- Tabset component -->
<lightning-tab label="Tab 1" value="1"> <!-- First tab -->
<p>This is the content of Tab 1.</p>
</lightning-tab>
<lightning-tab label="Tab 2" value="2"> <!-- Second tab -->
<p>This is the content of Tab 2.</p>
</lightning-tab>
<lightning-tab label="Tab 3" value="3"> <!-- Third tab -->
<p>This is the content of Tab 3.</p>
</lightning-tab>
</lightning-tabset>
</div>
</lightning-card>
</template>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment