import { NavLink, useParams } from 'react-router-dom' const TABS = [ { to: '', label: 'Steuerung', end: true }, { to: 'plan', label: 'Zielzustände' }, { to: 'execution', label: 'Ausführung' }, { to: 'inbox', label: 'Eingang' }, { to: 'journey', label: 'Nachvollziehbarkeit' }, ] export function InitiativeSubNav() { const { id } = useParams() const base = `/initiatives/${id}` return ( ) }