Moves group link management actions to redux
This commit is contained in:
parent
5c8b4bca7e
commit
410bc52fd0
6 changed files with 122 additions and 67 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue