Tabs
Switch between panels.
Import
tsx
import { Tabs } from "@cooud-ui/ui";
bash
npx cooud-ui add tabs
Switch between panels.
import { Tabs } from "@cooud-ui/ui";
npx cooud-ui add tabs
On this page
Switch between related panels of content within a single surface.
Manage your account details and public profile.
<Tabs defaultValue="account" className="w-full max-w-md"><TabsList><TabsTrigger value="account">Account</TabsTrigger><TabsTrigger value="password">Password</TabsTrigger><TabsTrigger value="team">Team</TabsTrigger></TabsList><TabsContent value="account" className="pt-4"><p className="text-sm text-fg-secondary">Manage your account details and public profile.</p></TabsContent><TabsContent value="password" className="pt-4"><p className="text-sm text-fg-secondary">Change your password and configure two-factor authentication.</p></TabsContent><TabsContent value="team" className="pt-4"><p className="text-sm text-fg-secondary">Invite teammates and manage their roles and permissions.</p></TabsContent></Tabs>