22 lines
325 B
JavaScript
22 lines
325 B
JavaScript
|
import { USERS_TYPING } from './actionsTypes';
|
||
|
|
||
|
export function addUserTyping(username) {
|
||
|
return {
|
||
|
type: USERS_TYPING.ADD,
|
||
|
username
|
||
|
};
|
||
|
}
|
||
|
|
||
|
export function removeUserTyping(username) {
|
||
|
return {
|
||
|
type: USERS_TYPING.REMOVE,
|
||
|
username
|
||
|
};
|
||
|
}
|
||
|
|
||
|
export function clearUserTyping() {
|
||
|
return {
|
||
|
type: USERS_TYPING.CLEAR
|
||
|
};
|
||
|
}
|