~bigbes/lethe

ref: 0b51b8ee59a86f13b764e305ebffa0c60507ec12 lethe/web/src/routes/projects.tsx -rw-r--r-- 525 bytes
0b51b8ee — Eugene Blikh web: shell, theme, keyboard, stub routes, palette skeleton 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('/projects')({
  component: ProjectsRoute,
})

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