mirror of
https://github.com/langgenius/dify.git
synced 2026-09-01 21:55:46 +08:00
10 lines
259 B
TypeScript
10 lines
259 B
TypeScript
import type { ReactNode } from 'react'
|
|
|
|
export function HomeShell({ children }: { children: ReactNode }) {
|
|
return (
|
|
<div className="flex h-full min-h-0 flex-col overflow-hidden border-l-[0.5px] border-divider-regular">
|
|
{children}
|
|
</div>
|
|
)
|
|
}
|