"use client";
import { TabsClient, type TabDef } from "@/components/TabsClient";
import { OrdersTab } from "./OrdersTab";
import { DownloadsTab } from "./DownloadsTab";
import { ProfileTab } from "./ProfileTab";
export function AccountTabs() {
const tabs: TabDef[] = [
{
id: "downloads",
label: "Downloads",
content: ,
},
{
id: "orders",
label: "Orders",
content: ,
},
{
id: "profile",
label: "Profile",
content: ,
},
];
return ;
}