UNPKG

@nnc-digital/nnc-design-system

Version:

Design system for West & North Northamptonshire Councils, two unitary councils encompassing Wellingborough, Corby, Daventry, East Northants, Kettering, Northampton, Northamptonshire County and South Northants.

25 lines (24 loc) 432 B
export interface ContentsProps { /** * An array of content links */ contents: ContentLink[]; /** * The optional current path */ currentPath?: string; /** * The optional contents title, defaults to 'Contents' */ title?: string; } export interface ContentLink { /** * Title of the page */ title: string; /** * URL of the page */ url: string; }