UNPKG

antd-hz

Version:

华卓科技基于 antd 5.0 定制的组件库

10 lines (9 loc) 323 B
import type React from 'react'; import type { AlertProps } from './Alert'; import ErrorBoundary from './ErrorBoundary'; export type { AlertProps } from './Alert'; type CompoundedComponent = React.FC<AlertProps> & { ErrorBoundary: typeof ErrorBoundary; }; declare const Alert: CompoundedComponent; export default Alert;