11 lines
170 B
TypeScript
11 lines
170 B
TypeScript
export type SiteNavItem = {
|
|
key: string
|
|
label: string
|
|
to: string
|
|
}
|
|
|
|
export const siteNav: SiteNavItem[] = [
|
|
{ key: 'site-home', label: '概览', to: '/site' }
|
|
]
|
|
|