Files
tech-interview-handbook/apps/portal/src/components/questions/QuestionsNavigation.ts
2022-10-11 17:46:21 +08:00

17 lines
406 B
TypeScript

import type { ProductNavigationItems } from '~/components/global/ProductNavigation';
const navigation: ProductNavigationItems = [
{ href: '/questions', name: 'My Lists' },
{ href: '/questions', name: 'My Questions' },
{ href: '/questions', name: 'History' },
];
const config = {
navigation,
showGlobalNav: false,
title: 'Questions Bank',
titleHref: '/questions',
};
export default config;