Moves group link management actions to redux

This commit is contained in:
Josh Perez 2022-06-13 14:42:19 -04:00 committed by GitHub
parent 5c8b4bca7e
commit 410bc52fd0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 122 additions and 67 deletions

View file

@ -18,18 +18,18 @@ export type ActionSpec = {
};
export type OwnProps = Readonly<{
moduleClassName?: string;
actions?: Array<ActionSpec>;
cancelButtonVariant?: ButtonVariant;
cancelText?: string;
children?: React.ReactNode;
hasXButton?: boolean;
i18n: LocalizerType;
moduleClassName?: string;
onCancel?: () => unknown;
onClose: () => unknown;
title?: string | React.ReactNode;
theme?: Theme;
hasXButton?: boolean;
cancelButtonVariant?: ButtonVariant;
onTopOfEverything?: boolean;
theme?: Theme;
title?: string | React.ReactNode;
}>;
export type Props = OwnProps;