20 lines
524 B
TypeScript
20 lines
524 B
TypeScript
'use client'
|
|
|
|
import AdminLayout from '@/components/admin/AdminLayout'
|
|
import BillingManagement from '@/components/admin/BillingManagement'
|
|
|
|
export default function AdminBillingPage() {
|
|
return (
|
|
<AdminLayout>
|
|
<div className="space-y-6">
|
|
<div>
|
|
<h1 className="text-3xl font-bold text-gray-900">Billing Management</h1>
|
|
<p className="text-gray-600 mt-2">Manage billing records, payments, and refunds</p>
|
|
</div>
|
|
|
|
<BillingManagement />
|
|
</div>
|
|
</AdminLayout>
|
|
)
|
|
}
|