~bigbes/lethe

ref: dcc2805a6e14ca0169751edb755aeac42d086d17 lethe/web/src/routes/health.tsx -rw-r--r-- 517 bytes
dcc2805a — Eugene Blikh docs: record collector final fixes 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>
    </>
  )
}