Files
ADHA_mobile_project/src/components/NotSupportModal.tsx
T
2024-02-08 18:45:58 +05:00

16 lines
431 B
TypeScript

const NotSupportModal = () => {
return (
<div className="bg-[#F3F2F0] h-full w-full flex justify-center items-center flex-col fixed z-30">
{
<div className="relative h-7 overflow-hidden">
<div className="flex flex-col items-center duration-300">
The app does not support OS version of your device
</div>
</div>
}
</div>
);
};
export default NotSupportModal;