mirror of
https://github.com/wassname/talk.git
synced 2026-08-15 12:55:10 +08:00
7 lines
137 B
JavaScript
7 lines
137 B
JavaScript
const buttonClicked = () => ({type: 'BUTTON_CLICKED'});
|
|
|
|
export const clickButton = () => dispatch => {
|
|
dispatch(buttonClicked());
|
|
};
|
|
|