UNPKG

@yuntijs/ui

Version:

☁️ Yunti UI - an open-source UI component library for building Cloud Native web apps

10 lines (9 loc) 365 B
import { type FlexProps } from 'antd'; import React from 'react'; import { PageContextValue } from './PageContext'; export interface PageProps extends React.HTMLAttributes<HTMLDivElement>, Pick<FlexProps, 'gap'> { loading?: boolean; status?: PageContextValue['status']; Link?: PageContextValue['Link']; } export declare const Page: React.FC<PageProps>;