// components/pricing/PricingTable.tsx "use client"; import { useState } from "react"; import { Plan } from "./types"; import BillingToggle from "./BillingToggle"; import PlanCard from "./PlanCard"; export default function PricingTable({ plans }: { plans: Plan[] }) { const [billing, setBilling] = useState<"monthly" | "yearly">("monthly"); return (