Files
omnivore/packages/web/components/templates/library/LibrarySideBar.tsx
2024-08-12 11:09:56 +08:00

10 lines
260 B
TypeScript

import { VStack } from '../../elements/LayoutPrimitives'
type LibrarySideBarProps = {
text: string
}
export function LibrarySideBar(props: LibrarySideBarProps): JSX.Element {
return <VStack css={{ width: '100%', height: '100%' }}>{props.text}</VStack>
}