mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
9 lines
260 B
TypeScript
9 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>
|
|
}
|