import { NavLink, Outlet } from 'react-router-dom' const navItems = [ { to: '/admin/games', label: 'Games' }, { to: '/admin/pokemon', label: 'Pokemon' }, { to: '/admin/evolutions', label: 'Evolutions' }, { to: '/admin/runs', label: 'Runs' }, ] export function AdminLayout() { return (

Admin Panel

) }