noteListBar
An app state of note list bar.
To get the noteListBar state:
const { noteListBar } = inkdrop.store.getState()Or, to connect with your React component:
import { useSelector } from 'react-redux'
const selector = ({ noteListBar }) => noteListBar
const MyComponent = props => {
const noteListBar = useSelector(selector)
// render
}Data Structure
selectedNoteIds: string[]
An array of note ID of selected notes on the note list bar.
actionTargetNoteIds: string[]
An array of note ID of target notes for context menu on the note list bar.
Can you help us improve these docs?
The source of these docs is here on GitHub. If you see a way these docs can be improved, please fork us!