Advertisement
Guest User

Untitled

a guest
Jun 26th, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // action-creators.js
  2. import { CHANGE_ACTIVE_SECTION } from '../constants/action-types';
  3.  
  4. export function changeActiveSection(sectionIndex) {
  5.     return {
  6.         type: CHANGE_ACTIVE_SECTION,
  7.         payload: {
  8.             sectionIndex
  9.         }
  10.     }
  11. }
  12.  
  13. // When you want to use it
  14. store.dispatch(changeActiveSection(index))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement