import React from 'react' import { Link } from '@inertiajs/react' export default function AnalyticsNav({ items = [] }) { if (!items.length) return null const pathname = typeof window !== 'undefined' ? window.location.pathname : '' return (
{items.map((item) => { const active = pathname === item.href return ( {item.label} ) })}
) }