import { A, useLocation } from '@solidjs/router'; const links = [ { href: '/admin/runtime-roles/new', label: 'Create Role' }, { href: '/admin/runtime-roles', label: 'Manage Roles' }, { href: '/admin/role-ui-configs/new', label: 'Create Dashboard' }, { href: '/admin/role-ui-configs', label: 'Manage Dashboards' }, { href: '/admin/onboarding-schemas/new', label: 'Create Onboarding Flow' }, { href: '/admin/onboarding-schemas', label: 'Manage Onboarding Flows' }, ]; export default function AdminSidebar() { const location = useLocation(); return ( ); }