mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
16 lines
438 B
TypeScript
16 lines
438 B
TypeScript
import { Allotment } from 'allotment'
|
|
import 'allotment/dist/style.css'
|
|
import { LibraryContainer } from './LibraryContainer'
|
|
|
|
export function LibraryItemsContainer(): JSX.Element {
|
|
return (
|
|
<Allotment>
|
|
<Allotment.Pane minSize={200}>
|
|
<LibraryContainer folder="inbox" />
|
|
</Allotment.Pane>
|
|
{/* <Allotment.Pane snap maxSize={400}>
|
|
<HighlightsList />
|
|
</Allotment.Pane> */}
|
|
</Allotment>
|
|
)
|
|
}
|