11 lines
160 B
TypeScript
11 lines
160 B
TypeScript
export type OaNavItem = {
|
|
key: string
|
|
label: string
|
|
to: string
|
|
}
|
|
|
|
export const oaNav: OaNavItem[] = [
|
|
{ key: 'oa-home', label: '概览', to: '/oa' }
|
|
]
|
|
|