mirror of
https://github.com/langgenius/dify.git
synced 2026-05-03 17:08:03 +08:00
18 lines
388 B
TypeScript
18 lines
388 B
TypeScript
import type { FC, PropsWithChildren } from 'react'
|
|
import * as React from 'react'
|
|
|
|
type SidebarProps = PropsWithChildren
|
|
|
|
const Sidebar: FC<SidebarProps> = ({ children }) => {
|
|
return (
|
|
<aside
|
|
className="flex w-[260px] shrink-0 flex-col gap-3 rounded-lg bg-white p-3"
|
|
data-component="sidebar"
|
|
>
|
|
{children}
|
|
</aside>
|
|
)
|
|
}
|
|
|
|
export default React.memo(Sidebar)
|