mirror of
https://github.com/linsa-io/linsa.git
synced 2026-01-12 12:20:23 +01:00
* fix(page): improve keybind * fix(topic): improve keybind * fix: learning state selector
14 lines
247 B
TypeScript
14 lines
247 B
TypeScript
"use client"
|
|
|
|
import { TopicHeader } from "./header"
|
|
import { TopicList } from "./list"
|
|
|
|
export function TopicRoute() {
|
|
return (
|
|
<div className="flex h-full flex-auto flex-col overflow-hidden">
|
|
<TopicHeader />
|
|
<TopicList />
|
|
</div>
|
|
)
|
|
}
|