fcc-challenges/drum-machine-react/src/actions/shouldMetronomeRestartActio...

10 lines
226 B
JavaScript

export const RESTARTMETRONOME = "RESTARTMETRONOME";
export const shouldMetronomeRestartAction = (key,restartMetronome) => {
return {
type: RESTARTMETRONOME,
key: key,
restartMetronome: restartMetronome,
};
};