Username Link QR Code
This commit is contained in:
parent
68dfc46185
commit
e1d2dbd8ff
50 changed files with 2187 additions and 120 deletions
|
@ -11,6 +11,7 @@ import type {
|
|||
} from '../ducks/username';
|
||||
import type {
|
||||
UsernameEditState,
|
||||
UsernameLinkState,
|
||||
UsernameReservationState,
|
||||
UsernameReservationError,
|
||||
} from '../ducks/usernameEnums';
|
||||
|
@ -23,6 +24,11 @@ export const getUsernameEditState = createSelector(
|
|||
(state: UsernameStateType): UsernameEditState => state.editState
|
||||
);
|
||||
|
||||
export const getUsernameLinkState = createSelector(
|
||||
getUsernameState,
|
||||
(state: UsernameStateType): UsernameLinkState => state.linkState
|
||||
);
|
||||
|
||||
export const getUsernameReservation = createSelector(
|
||||
getUsernameState,
|
||||
(state: UsernameStateType): UsernameReservationStateType =>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue