actions.js 169 B

12345
  1. export const dec = () => ({type: 'DEC'});
  2. export const inc = () => ({type: 'INC'});
  3. export const rnd = () => ({type: 'RND', payload: Math.floor(Math.random() * 10)});