import React, { ReactNode } from 'react'; import { Box, Scroll } from 'folds'; type SidebarContentProps = { scrollable: ReactNode; sticky: ReactNode; }; export function SidebarContent({ scrollable, sticky }: SidebarContentProps) { return ( <> {scrollable} {sticky} ); }