@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.
14 lines (13 loc) • 418 B
TypeScript
import React from 'react';
import { EventProps } from '../../events/Event/Event.types';
import { BreadcrumbProp } from '../../structure/Breadcrumbs/Breadcrumbs.types';
interface EventPageProps {
event: EventProps;
breadcrumbs?: BreadcrumbProp[];
footerLinks?: Array<{
title: string;
url: string;
}>;
}
export declare const EventPage: React.FunctionComponent<EventPageProps>;
export {};