budget-view-finance/src/types/index.ts
gpt-engineer-app[bot] b06373115b Fix: Resolve import error in Sidebar.tsx
The commit fixes an import error in `Sidebar.tsx` related to the `@/config/site` module. The error message indicates that the module cannot be resolved. The fix likely involves ensuring the correct path to the module or creating the missing file.
2025-05-19 18:30:40 +00:00

11 lines
168 B
TypeScript

import { ReactNode } from "react";
export interface MainNavItem {
title: string;
href?: string;
icon?: ReactNode;
disabled?: boolean;
external?: boolean;
}