// Copyright 2024, Command Line Inc. // SPDX-License-Identifier: Apache-2.0 import { AboutModal } from "./about"; import { TosModal } from "./tos"; import { UserInputModal } from "./userinputmodal"; const modalRegistry: { [key: string]: React.ComponentType } = { [TosModal.displayName || "TosModal"]: TosModal, [UserInputModal.displayName || "UserInputModal"]: UserInputModal, [AboutModal.displayName || "AboutModal"]: AboutModal, }; export const getModalComponent = (key: string): React.ComponentType | undefined => { return modalRegistry[key]; };