import React, { useRef } from 'react'; import { Scroll } from 'folds'; import { Sidebar, SidebarContent, SidebarStackSeparator, SidebarStack, } from '../../components/sidebar'; import { DirectTab, SpaceTabs, ExploreTab, SettingsTab, UnverifiedTab, SearchTab, } from './sidebar'; export function SidebarNav() { const scrollRef = useRef(null); return ( } sticky={ <> } /> ); }