import { T9n } from 'features/T9n' import { Header, HeaderTitle } from 'features/PopupComponents' import { Wrapper, Body, Footer, ResultText, SmallButton, } from '../../styled' import { useBuyMatchPopupStore } from '../../store' export const ErrorStep = () => { const { close, error: paymentError, } = useBuyMatchPopupStore() return (
{paymentError || }
) }