mirror of
https://github.com/wassname/talk.git
synced 2026-08-06 13:41:02 +08:00
8 lines
160 B
JavaScript
8 lines
160 B
JavaScript
const buttonClicked = () => ({type: 'BUTTON_CLICKED'});
|
|
|
|
export const clickButton = () => dispatch => {
|
|
console.log('here');
|
|
dispatch(buttonClicked());
|
|
};
|
|
|