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

Admin Panel

) }