interface ConfigTabContainerProps {
    children?: ReactNode;
    class?: string;
    csrfToken?: string;
    editOrCreate?: string;
    identifier?: string;
    key?: Key;
    ref?: LegacyRef<TabContainerProps>;
    store?: Store<
        {
            api: CombinedState<{}, any, "api">;
            bookEditor: BookState;
            catalog: State;
            editor: CombinedState<State>;
        },
    >;
    tab: string;
}

Hierarchy (View Summary)

Properties

children?: ReactNode
class?: string
csrfToken?: string
editOrCreate?: string
identifier?: string
key?: Key
ref?: LegacyRef<TabContainerProps>
store?: Store<
    {
        api: CombinedState<{}, any, "api">;
        bookEditor: BookState;
        catalog: State;
        editor: CombinedState<State>;
    },
>
tab: string