react-code-dataset
/
wp-calypso
/apps
/notifications
/src
/panel
/state
/selectors
/get-is-note-hidden.js
| import getNotes from './get-notes'; | |
| export const getIsNoteHidden = ( notesState, noteId ) => | |
| true === notesState.hiddenNoteIds[ noteId ]; | |
| export default ( state, noteId ) => getIsNoteHidden( getNotes( state ), noteId ); | |