You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
299 B
J���������
12 lines
299 B
J���������
import EntryActionTypes from '../../constants/EntryActionTypes';
|
|
|
|
export const handleSocketDisconnect = () => ({
|
|
type: EntryActionTypes.SOCKET_DISCONNECT_HANDLE,
|
|
payload: {},
|
|
});
|
|
|
|
export const handleSocketReconnect = () => ({
|
|
type: EntryActionTypes.SOCKET_RECONNECT_HANDLE,
|
|
payload: {},
|
|
});
|