mirror of
https://github.com/linsa-io/linsa.git
synced 2026-01-12 12:20:23 +01:00
* 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
22 lines
501 B
TypeScript
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 />
|
|
</>
|
|
)
|
|
}
|