17 lines
227 B
TypeScript
17 lines
227 B
TypeScript
export const breadcrumbs = {
|
|
"/my-pages2": [
|
|
{
|
|
title: "My Pages",
|
|
},
|
|
],
|
|
"/my-pages2/profile": [
|
|
{
|
|
href: "/my-pages2",
|
|
title: "My Pages",
|
|
},
|
|
{
|
|
title: "My Profile",
|
|
},
|
|
],
|
|
}
|