index.js 140 B

12345678
  1. import * as T from "../actionTypes"
  2. export const changeBtnText=(text)=>{
  3. return {
  4. type:T.CHANGE_BTN_TEXT,
  5. payload:text
  6. }
  7. }