@yuntijs/ui
Version:
☁️ Yunti UI - an open-source UI component library for building Cloud Native web apps
19 lines (18 loc) • 724 B
TypeScript
/// <reference types="react" />
import { PageBreadcrumb } from './Breadcrumb';
import { PageContent } from './Content';
import { PageFooter } from './Footer';
import { PageHeader } from './Header';
import { PageTitle } from './Title';
export type { PageBreadcrumbProps } from './Breadcrumb';
export type { PageContentProps } from './Content';
export type { PageHeaderProps } from './Header';
export type { PageProps } from './Page';
export type { PageTitleProps } from './Title';
export declare const Page: import("react").FC<import("./Page").PageProps> & {
Breadcrumb: typeof PageBreadcrumb;
Title: typeof PageTitle;
Header: typeof PageHeader;
Content: typeof PageContent;
Footer: typeof PageFooter;
};