mirror of
https://github.com/linsa-io/linsa.git
synced 2026-01-12 12:20:23 +01:00
14 lines
242 B
TypeScript
14 lines
242 B
TypeScript
"use client"
|
|
|
|
import { PageHeader } from "./header"
|
|
import { PageList } from "./list"
|
|
|
|
export function PageRoute() {
|
|
return (
|
|
<div className="flex h-full flex-auto flex-col overflow-hidden">
|
|
<PageHeader />
|
|
<PageList />
|
|
</div>
|
|
)
|
|
}
|