mirror of
https://github.com/karl0ss/homepage.git
synced 2025-04-29 12:03:41 +01:00
12 lines
365 B
React
12 lines
365 B
React
![]() |
export default function Widget({ error = false, children }) {
|
||
|
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>
|
||
|
);
|
||
|
}
|
||
|
|
||
|
return <div className="flex flex-row w-full">{children}</div>;
|
||
|
}
|