code: tsx,serverstatuspanel,nextjs (1 files)

This commit is contained in:
2025-12-26 05:25:17 +00:00
parent 0896b0324f
commit eb5162c99e

View File

@@ -0,0 +1,9 @@
import React from 'react'
export function ServerStatusPanel(): JSX.Element {
return (
<div className="p-4 border rounded bg-white/50">
<p className="text-sm text-muted-foreground">Server status unavailable in this build.</p>
</div>
)
}