interface AppProps<P> {
    children?: ReactNode;
    className?: string;
    component?: false | CustomComponent<P>;
    message?: ConfigOptions;
    notification?: NotificationConfig;
    prefixCls?: string;
    rootClassName?: string;
    style?: CSSProperties;
}

Type Parameters

  • P = AnyObject

Hierarchy

  • AppConfig
    • AppProps

Properties

children?: ReactNode
className?: string
component?: false | CustomComponent<P>
message?: ConfigOptions
notification?: NotificationConfig
prefixCls?: string
rootClassName?: string
style?: CSSProperties

Generated using TypeDoc