選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

actions.native.js 358B

12345678910111213141516171819
  1. // @flow
  2. import { type Dispatch } from 'redux';
  3. import { appNavigate } from '../app/actions';
  4. export * from './actions.any';
  5. /**
  6. * Cancels the ongoing knocking and abandons the join flow.
  7. *
  8. * @returns {Function}
  9. */
  10. export function cancelKnocking() {
  11. return async (dispatch: Dispatch<any>) => {
  12. dispatch(appNavigate(undefined));
  13. };
  14. }