Tabs
Preview
عنوان ۱
عنوان ۲
عنوان ۳
import Tabs from "@repo/ui/Tabs";
import { useState } from "react";
const [value, setValue] = useState(1);
<Tabs value={value} onChange={(value) => setValue(value)}>
<Tabs.Item>عنوان ۱</Tabs.Item>
<Tabs.Item>عنوان ۲</Tabs.Item>
<Tabs.Item>عنوان ۳</Tabs.Item>
</Tabs>;
Installation
npx the-dig@latest add Tabs
Props
Tabs component
| Prop | Type | Default |
|---|---|---|
value * | number | - |
onChange * | (value: number) => void | - |
children | ReactNode | - |
className | string | - |