|
1
|
'use client'; |
|
2
|
|
|
3
|
export default function SidebarSection({title, children}) { |
|
4
|
return ( |
|
5
|
<div className="sidebar-section"> |
|
6
|
<h3 className="sidebar-section-title">{title}</h3> |
|
7
|
<div className="sidebar-section-content">{children}</div> |
|
8
|
</div> |
|
9
|
); |
|
10
|
} |