16 lines
360 B
TypeScript
16 lines
360 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>
|
|
)
|
|
}
|