UNPKG

@etsoo/toolpad

Version:

Dashboard framework extention based on Toolpad Core

11 lines (10 loc) 302 B
import * as React from "react"; import type { Breadcrumb } from "../PageContainer"; export interface ActivePage { title: string; path: string; sourcePath: string; breadcrumbs: Breadcrumb[]; pageHeader?: React.ReactNode; } export declare function useActivePage(): ActivePage | null;