router now has additional end marker

This commit is contained in:
Fedor Katurov 2020-01-17 17:20:17 +07:00
parent 5db6d85e35
commit 24641a33f7
2 changed files with 22 additions and 17 deletions

View file

@ -1,4 +1,4 @@
import { IState } from "../store";
import { IState } from '../store';
export const selectEditor = (state: IState) => state.editor;
export const selectEditorSave = (state: IState) => state.editor.save;
@ -6,4 +6,5 @@ export const selectEditorEditing = (state: IState) => state.editor.editing;
export const selectEditorMode = (state: IState) => state.editor.mode;
export const selectEditorActiveSticker = (state: IState) => state.editor.activeSticker;
export const selectEditorRenderer = (state: IState) => state.editor.renderer;
export const selectEditorRouter = (state: IState) => state.editor.router;
export const selectEditorRouter = (state: IState) => state.editor.router;
export const selectEditorDistance = (state: IState) => state.editor.distance;