fcc-challenges/drum-machine-react/src/actions/setMetronomeTempoAction.js

10 lines
191 B
JavaScript

export const SETMETRONOMETEMPO = "SETMETRONOMETEMPO";
export const setMetronomeTempoAction = (key,tempo) => {
return {
type: SETMETRONOMETEMPO,
key: key,
tempo: tempo,
};
};