@evlmaistrenko/tools-antd
    Preparing search index...

    Interface ApplicationProps<Config>

    interface ApplicationProps<
        Config extends ApplicationConfigBase = ApplicationConfig,
    > {
        antdAppProps?: Omit<AppProps<AnyObject>, "children">;
        backTop?: boolean;
        footer?: HTMLAttributes<HTMLElement>;
        getConfigProviderProps?: (
            context: Omit<ApplicationContextValue<Config>, "configProviderProps">,
        ) => ConfigProviderProps;
        header?: HTMLAttributes<HTMLElement> & { sticky?: boolean } & ApplicationHeaderProps;
        height?: Height<string | number>;
        initialState?: ApplicationState;
        main?: HTMLAttributes<HTMLElement> & { component?: ElementType };
        primarySidebar?: LayoutSidebarProps;
        secondarySidebar?: LayoutSidebarProps;
    }

    Type Parameters

    Hierarchy

    • Omit<LayoutProps, "header" | "onSidebarsOverlayClick" | "direction">
      • ApplicationProps
    Index

    Properties

    antdAppProps?: Omit<AppProps<AnyObject>, "children">
    backTop?: boolean

    Whether to render FloatButton.BackTop.

    footer?: HTMLAttributes<HTMLElement>
    getConfigProviderProps?: (
        context: Omit<ApplicationContextValue<Config>, "configProviderProps">,
    ) => ConfigProviderProps
    header?: HTMLAttributes<HTMLElement> & { sticky?: boolean } & ApplicationHeaderProps
    height?: Height<string | number>
    initialState?: ApplicationState
    main?: HTMLAttributes<HTMLElement> & { component?: ElementType }
    primarySidebar?: LayoutSidebarProps
    secondarySidebar?: LayoutSidebarProps