mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
14 lines
No EOL
412 B
TypeScript
14 lines
No EOL
412 B
TypeScript
import { VStack } from '../../elements/LayoutPrimitives'
|
|
import { useGetUserPreferences } from '../../../lib/networking/queries/useGetUserPreferences'
|
|
import { Menubar } from '../Menu'
|
|
|
|
|
|
export function LibraryMenu(): JSX.Element {
|
|
useGetUserPreferences()
|
|
|
|
return (
|
|
<VStack alignment="start" distribution="start" css={{ width: '286px', pl: '16px', height: '100%' }}>
|
|
<Menubar />
|
|
</VStack>
|
|
)
|
|
} |