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