ScreenInitAction.js 135 Bytes
Newer Older
Giang Tran committed
1 2 3 4 5 6 7 8
import {NEW_SCREEN} from './actionTypes';

export const newScreenInit = (body) => {
  return {
    type: NEW_SCREEN,
    body,
  };
};