This repository has been archived on 2025-08-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
lcm-potty-chart/theme/layout/navItems.ts
Lucid Kobold 4ec4be5a12 init
2021-11-13 17:11:29 -06:00

7 lines
148 B
TypeScript

export type NavItem = [string, string];
export type NavItems = NavItem[];
const navItems: NavItems = [["Home", "#top"]];
export default navItems;