16 lines
431 B
TypeScript
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;
|