9 lines
138 B
TypeScript
9 lines
138 B
TypeScript
|
|
export interface IBreadcrumbProps {
|
||
|
|
items: IBreadcrumbItem[];
|
||
|
|
}
|
||
|
|
|
||
|
|
export interface IBreadcrumbItem {
|
||
|
|
title: string;
|
||
|
|
href?: string;
|
||
|
|
}
|