mirror of
https://github.com/wassname/talk.git
synced 2026-06-29 16:33:12 +08:00
10 lines
184 B
JavaScript
10 lines
184 B
JavaScript
import * as actions from './constants';
|
|
|
|
export const startAttach = () => ({
|
|
type: actions.START_ATTACH,
|
|
});
|
|
|
|
export const finishAttach = () => ({
|
|
type: actions.FINISH_ATTACH,
|
|
});
|