'use client' import React, { useState } from 'react' import Link from 'next/link' export const CommunityNavLinks: React.FC = () => { const [open, setOpen] = useState(true) const links = [ { href: '/admin/views/community/inbox', label: 'Community Inbox' }, { href: '/admin/views/community/analytics', label: 'Community Analytics' }, ] return (
{open && (
{links.map((link) => ( {link.label} ))}
)}
) } export default CommunityNavLinks