mirror of
https://github.com/muerwre/orchidmap-front.git
synced 2025-04-25 11:06:40 +07:00
adding stickers on click
This commit is contained in:
parent
e0048d1fc3
commit
6db2809de5
11 changed files with 83 additions and 20 deletions
|
@ -37,7 +37,7 @@ export interface IRootReducer {
|
|||
ready: boolean,
|
||||
user: IUser,
|
||||
editing: boolean,
|
||||
mode: keyof typeof MODES,
|
||||
mode: typeof MODES[keyof typeof MODES],
|
||||
logo: keyof typeof LOGOS,
|
||||
routerPoints: number,
|
||||
distance: number,
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
import { IState } from '$redux/store'
|
||||
|
||||
export const selectUserEditing = (state: IState) => state.user.editing;
|
||||
export const selectUserEditing = (state: IState) => state.user.editing;
|
||||
export const selectUserMode = (state: IState) => state.user.mode;
|
||||
export const selectUserActiveSticker = (state: IState) => state.user.activeSticker;
|
Loading…
Add table
Add a link
Reference in a new issue