UNPKG

expense-manager-react

Version:

A comprehensive expense tracking application built with React, TypeScript, and Supabase

9 lines (8 loc) 299 B
import { ReactNode } from 'react'; interface AppLayoutProps { children?: ReactNode; title?: string; onSearch?: (searchTerm: string) => void; } declare const AppLayout: ({ children, title, onSearch, }: AppLayoutProps) => import("react/jsx-runtime").JSX.Element; export default AppLayout;