mirror of
https://github.com/langgenius/dify.git
synced 2026-02-13 07:01:23 -05:00
15 lines
422 B
TypeScript
15 lines
422 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-[320px] shrink-0 flex-col gap-px overflow-hidden rounded-[10px] border border-components-panel-border-subtle bg-components-panel-bg">
|
|
{children}
|
|
</aside>
|
|
)
|
|
}
|
|
|
|
export default React.memo(Sidebar)
|