Fuzzy-Searchable Emoji Picker
This commit is contained in:
parent
2f47a3570b
commit
0e9d549cf3
48 changed files with 1697 additions and 280 deletions
|
@ -5,6 +5,11 @@ import {
|
|||
ConversationsStateType,
|
||||
reducer as conversations,
|
||||
} from './ducks/conversations';
|
||||
import {
|
||||
EmojisActionType,
|
||||
EmojisStateType,
|
||||
reducer as emojis,
|
||||
} from './ducks/emojis';
|
||||
import {
|
||||
ItemsActionType,
|
||||
ItemsStateType,
|
||||
|
@ -24,6 +29,7 @@ import { reducer as user, UserStateType } from './ducks/user';
|
|||
|
||||
export type StateType = {
|
||||
conversations: ConversationsStateType;
|
||||
emojis: EmojisStateType;
|
||||
items: ItemsStateType;
|
||||
search: SearchStateType;
|
||||
stickers: StickersStateType;
|
||||
|
@ -31,13 +37,15 @@ export type StateType = {
|
|||
};
|
||||
|
||||
export type ActionsType =
|
||||
| ItemsActionType
|
||||
| EmojisActionType
|
||||
| ConversationActionType
|
||||
| ItemsActionType
|
||||
| StickersActionType
|
||||
| SearchActionType;
|
||||
|
||||
export const reducers = {
|
||||
conversations,
|
||||
emojis,
|
||||
items,
|
||||
search,
|
||||
stickers,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue