open-codetree / components /Playground /IframeErrorScreen.tsx
matt HOFFNER
init
3c3f089
raw
history blame contribute delete
241 Bytes
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>
);
};