12 lines
305 B
TypeScript
12 lines
305 B
TypeScript
"use client"
|
|
|
|
import { AuthGuard } from '@/components/auth-guard'
|
|
import { SellerStatisticsDashboard } from '@/components/seller-statistics/seller-statistics-dashboard'
|
|
|
|
export default function SellerStatisticsPage() {
|
|
return (
|
|
<AuthGuard>
|
|
<SellerStatisticsDashboard />
|
|
</AuthGuard>
|
|
)
|
|
}
|