import { VStack } from '../../elements/LayoutPrimitives' type LibrarySideBarProps = { text: string } export function LibrarySideBar(props: LibrarySideBarProps): JSX.Element { return {props.text} }