import { themeStyle } from '@joplin/lib/theme'; import * as React from 'react'; import { useMemo } from 'react'; import NoteList from '../NoteList/NoteList'; import NoteListControls from '../NoteListControls/NoteListControls'; import { Size } from '../ResizableLayout/utils/types'; import styled from 'styled-components'; interface Props { resizableLayoutEventEmitter: any; size: Size; visible: boolean; themeId: number; } const StyledRoot = styled.div` display: flex; flex-direction: column; overflow: hidden; width: 100%; `; export default function NoteListWrapper(props: Props) { const theme = themeStyle(props.themeId); const controlHeight = theme.topRowHeight; const noteListSize = useMemo(() => { return { width: props.size.width, height: props.size.height - controlHeight, }; }, [props.size, controlHeight]); return ( ); }