Files
shadcn-ui/apps/www/content/docs/components/tabs.mdx
2023-06-22 22:44:52 +04:00

40 lines
885 B
Plaintext

---
title: Tabs
description: A set of layered sections of content—known as tab panels—that are displayed one at a time.
component: true
radix:
link: https://www.radix-ui.com/docs/primitives/components/tabs
api: https://www.radix-ui.com/docs/primitives/components/tabs#api-reference
---
<ComponentPreview name="tabs-demo" />
## Installation
<Steps>
### Command
```bash
npx shadcn-ui add tabs
```
### Usage
```tsx
import { Tabs, TabsContent, TabsList, TabsTrigger } from "@/components/ui/tabs"
```
```tsx
<Tabs defaultValue="account" className="w-[400px]">
<TabsList>
<TabsTrigger value="account">Account</TabsTrigger>
<TabsTrigger value="password">Password</TabsTrigger>
</TabsList>
<TabsContent value="account">Make changes to your account here.</TabsContent>
<TabsContent value="password">Change your password here.</TabsContent>
</Tabs>
```
</Steps>