add probes page

This commit is contained in:
henrygd
2026-04-20 11:52:37 -04:00
parent 209bb4ebb4
commit 3a881e1d5e
7 changed files with 81 additions and 7 deletions

View File

@@ -0,0 +1,26 @@
import { useLingui } from "@lingui/react/macro"
import { memo, useEffect, useMemo } from "react"
import NetworkProbesTableNew from "@/components/network-probes-table/network-probes-table"
import { ActiveAlerts } from "@/components/active-alerts"
import { FooterRepoLink } from "@/components/footer-repo-link"
export default memo(() => {
const { t } = useLingui()
useEffect(() => {
document.title = `${t`Network Probes`} / Beszel`
}, [t])
return useMemo(
() => (
<>
<div className="grid gap-4">
<ActiveAlerts />
<NetworkProbesTableNew />
</div>
<FooterRepoLink />
</>
),
[]
)
})