/** * This component is displayed via Route matching and also has Links to other * components that are children. In order to allow this component to not need to * know its full path (so that the component can be moved from one route to * another) the component is provided `baseRoute` - the path to this component's * parent component, and `relativeRoute` - the relative path used to display this * component. */ export interface NestedRouteProps { /** A Route style path to the level just below the current path, e.g. `/:uuid` */ baseRoute: string; /** The relative path to this component, e.g. `models-templates` */ relativeRoute: string; }