nav-options.ts (319B)
1 import { Routes, type NavOption } from "../shared/types"; 2 3 export const NavOptions: NavOption[] = [ 4 { 5 name: 'Configure Network', 6 url: Routes.ConfigureNetwork 7 }, 8 { 9 10 name: 'Current Proposal', 11 url: Routes.CurrentProposal 12 }, 13 { 14 name: 'Create Proposal', 15 url: Routes.CreateProposal 16 } 17 ]