~bigbes/lethe

ref: f2376137d0f2f8cd5978839c3be663ad85527576 lethe/web/src/routes/health.tsx -rw-r--r-- 517 bytes
f2376137 — Eugene Blikh web: /login + /auth/callback routes + auth context + config reader 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>
    </>
  )
}