Add reusable <Modal> component, use with <Alert>

This commit is contained in:
Evan Hahn 2021-04-13 09:20:02 -05:00 committed by GitHub
parent 9846fb8edf
commit 62f1a42c25
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
14 changed files with 276 additions and 55 deletions

View file

@ -1,4 +1,4 @@
// Copyright 2019-2020 Signal Messenger, LLC
// Copyright 2019-2021 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import * as React from 'react';
@ -28,6 +28,7 @@ function focusRef(el: HTMLElement | null) {
}
}
// TODO: This should use <Modal>. See DESKTOP-1038.
export const ConfirmationDialog = React.memo(
({ i18n, onClose, cancelText, children, title, actions }: Props) => {
React.useEffect(() => {