diff --git a/packages/tradershub/src/features/cfd/modals/VerificationFailedModal/VerificationFailedModal.tsx b/packages/tradershub/src/features/cfd/modals/VerificationFailedModal/VerificationFailedModal.tsx new file mode 100644 index 000000000000..0c6c9053f8f1 --- /dev/null +++ b/packages/tradershub/src/features/cfd/modals/VerificationFailedModal/VerificationFailedModal.tsx @@ -0,0 +1,13 @@ +import React from 'react'; +import { Modal } from '../../../../components'; +import { VerificationFailed } from '../../screens'; + +const VerificationFailedModal = () => ( + + + + + +); + +export default VerificationFailedModal; diff --git a/packages/tradershub/src/features/cfd/modals/VerificationFailedModal/index.ts b/packages/tradershub/src/features/cfd/modals/VerificationFailedModal/index.ts new file mode 100644 index 000000000000..03b9b2fb75c3 --- /dev/null +++ b/packages/tradershub/src/features/cfd/modals/VerificationFailedModal/index.ts @@ -0,0 +1 @@ +export { default as VerificationFailedModal } from './VerificationFailedModal'; diff --git a/packages/tradershub/src/features/cfd/modals/index.ts b/packages/tradershub/src/features/cfd/modals/index.ts index 95a9e8dc95c8..c44b52100382 100644 --- a/packages/tradershub/src/features/cfd/modals/index.ts +++ b/packages/tradershub/src/features/cfd/modals/index.ts @@ -1,3 +1,5 @@ export * from './CTraderSuccessModal'; export * from './DxtradePasswordModal'; export * from './MT5AccountTypeModal'; +export * from './TradeModal'; +export * from './VerificationFailedModal';