~bigbes/lethe

ref: 136ae1f4c5c0068868f3cabeae0f947945a381dd lethe/web/src/routes/health.tsx -rw-r--r-- 517 bytes
136ae1f4 — Eugene Blikh docs(lethe-web-ui-foundation): record verify section, mark Verified a month 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>
    </>
  )
}