~bigbes/lethe

ref: ef738a28b65454441af0c98c23a389cfa24fb22c lethe/web/src/routes/health.tsx -rw-r--r-- 517 bytes
ef738a28 — Eugene Blikh collector: align ingest sender with server response 24 days ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import { createFileRoute } from '@tanstack/react-router'
import React from 'react'
import { EmptyState, Tag } from '../primitives'
import { SubBar } from '../shell/SubBar'

export const Route = createFileRoute('/health')({
  component: HealthRoute,
})

function HealthRoute(): React.JSX.Element {
  return (
    <>
      <SubBar>
        <Tag kind="neutral">health</Tag>
      </SubBar>
      <div className="body body-pad">
        <EmptyState glyph="∅" copy="coming in a later task" />
      </div>
    </>
  )
}