Files
archived-linsa/web/components/routes/link/LinkRoute.tsx
Aslam 867478d55c fix: Link, Pages, Topic, Hook and Others (#178)
* chore: remove useKeyDownListener

* chore: remove react-use, update jazz version and add query string

* chore: update jazz version

* chore: use simple mac or win utils code

* feat(util): add isTextInput

* feat(hooks): all needed hooks

* fix: link bunch stuff

* fix: page bunch stuff

* chore: bunch update for custom component

* chore: use throttle from internal hook

* chore: topic bunch stuff

* chore: update layout

* fix: truncate content header of topic detail
2024-09-23 23:16:02 +07:00

22 lines
501 B
TypeScript

"use client"
import * as React from "react"
import { LinkHeader } from "@/components/routes/link/header"
import { LinkList } from "@/components/routes/link/list"
import { LinkManage } from "@/components/routes/link/manage"
import { atom } from "jotai"
import { LinkBottomBar } from "./bottom-bar"
export const isDeleteConfirmShownAtom = atom(false)
export function LinkRoute(): React.ReactElement {
return (
<>
<LinkHeader />
<LinkManage />
<LinkList />
<LinkBottomBar />
</>
)
}