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