import { Outlet, NavLink, useLocation } from 'react-router-dom' import { getAdminShellNavEntries, adminShellEntryIsActive, adminShellEntryItemCount, } from '../config/adminNav' /** * Wie KI-Analyse: nur Gruppen-Chips (mobil) bzw. Seitenleiste (desktop); * konkrete Admin-Seiten über Hub unter /admin/g/:groupId. */ export default function AdminShell() { const loc = useLocation() const entries = getAdminShellNavEntries() return (
) }