Files
talk/plugins/talk-plugin-local-auth/client/actions.js
T
2018-05-10 13:31:00 -06:00

10 lines
186 B
JavaScript

import * as actions from './constants';
export const startAttach = () => ({
type: actions.STARTED_ATTACH,
});
export const finishAttach = () => ({
type: actions.FINISH_ATTACH,
});