13 lines
347 B
TypeScript
13 lines
347 B
TypeScript
"use client";
|
|
|
|
import AdminShell from "../../ui/AdminShell";
|
|
import AdminDiagnosticsPanel from "../../ui/AdminDiagnosticsPanel";
|
|
|
|
export default function AdminDiagnosticsPage() {
|
|
return (
|
|
<AdminShell title="Diagnostics" subtitle="Check connections and investigate service problems.">
|
|
<AdminDiagnosticsPanel />
|
|
</AdminShell>
|
|
);
|
|
}
|