mirror of
https://github.com/skidoodle/hostinfo
synced 2026-04-28 09:37:37 +02:00
22 lines
628 B
TypeScript
22 lines
628 B
TypeScript
import ServerInfo from '@/components/ServerInfo';
|
|
import Error from '@/components/Error';
|
|
import { useHostInfo } from '@/hooks/useHostInfo';
|
|
|
|
export default function Popup() {
|
|
const { info, loading } = useHostInfo();
|
|
|
|
if (loading) {
|
|
return (
|
|
<div className="w-80 h-64 bg-white dark:bg-gray-950 flex flex-col items-center justify-center font-sans">
|
|
<div className="w-6 h-6 border-2 border-gray-200 dark:border-gray-700 border-t-blue-600 rounded-full animate-spin"></div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
if (!info) {
|
|
return <Error error="No active page found" />;
|
|
}
|
|
|
|
return <ServerInfo state={info} />;
|
|
}
|