import React, { useState } from 'react'; import Modal, { ModalCloseButton, ModalWrapper } from '@/ui/modal'; import getIsMobile from '@/utils/get-is-mobile'; import { StyledButton, StyledContent, StyledTitle } from './styles'; import bg from './bg.png'; export const MobileModal = () => { const [showModal, setShowModal] = useState(getIsMobile()); return ( { setShowModal(false); }} > { setShowModal(false); }} /> Ooops!

Looks like you are browsing on a mobile device.

We are still working on mobile support and recommend you use a desktop device.

{ setShowModal(false); }} > Got it
); }; export default MobileModal;