12 lines
377 B
React
Raw Normal View History

2022-09-26 15:25:10 +03:00
export default function Container({ error = false, children }) {
2022-08-25 16:29:26 +03:00
if (error) {
return (
<div className="bg-theme-200/50 dark:bg-theme-900/20 rounded m-1 flex-1 flex flex-col items-center justify-center p-1">
<div className="font-thin text-sm">{error}</div>
</div>
);
}
2022-09-14 09:09:11 +03:00
return <div className="relative flex flex-row w-full">{children}</div>;
2022-08-25 16:29:26 +03:00
}