Spaces:
Paused
Paused
File size: 241 Bytes
3c3f089 |
1 2 3 4 5 6 7 8 9 10 |
import React from "react";
export const IframeErrorScreen = ({ err }: any) => {
return (
<div className="px-5 pt-10 text-red-600 tracking-wide absolute h-full w-full z-50 backdrop-filter backdrop-blur">
{err}
</div>
);
};
|