import { Suspense } from 'react'; import { Loader2 } from 'lucide-react'; import { BillingPlans } from '@/components/settings/billing-plans'; export const metadata = { title: 'Billing', }; function Fallback() { return (
); } export default function BillingPage() { return ( }> ); }