import { useMyDashboard, useStructures } from '@/hooks/useMlm'; export default function MLMPage() { const { data: dashboard, isLoading } = useMyDashboard(); const { data: structures } = useStructures({ isActive: true }); if (isLoading) { return (
{dashboard.currentRank.name}
Level {dashboard.currentRank.level}
No rank assigned yet
)}You've reached the highest rank!
)}{structure.type}
{structure.description}
)}No active structures
)}