mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-25 04:46:40 +07:00
5 lines
239 B
TypeScript
5 lines
239 B
TypeScript
import { IState } from '../store';
|
|
|
|
export const selectNode = (state: IState) => state.node;
|
|
export const selectNodeComments = (state: IState) => state.node.comments;
|
|
export const selectNodeCurrent = (state: IState) => state.node.current;
|