export const pingOK = (id: string, at: number) => {
  const action = { type: Actions.PING_OK, payload: { id, at } };
  store.dispatch(action);
};