mirror of
https://github.com/docker/docs.git
synced 2026-03-27 14:28:47 +07:00
9 lines
218 B
JavaScript
9 lines
218 B
JavaScript
/* @flow */
|
|
'use strict';
|
|
|
|
import type FluxibleActionContext from '../../../flow-libs/fluxible';
|
|
|
|
module.exports = function(actionContext: FluxibleActionContext) {
|
|
actionContext.dispatch('CHANGE_PASS_CLEAR', {});
|
|
};
|