You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

actions.js 322B

12345678910111213141516
  1. import { LANDING_IS_SHOWN } from './actionTypes';
  2. import './reducer';
  3. /**
  4. * Returns an action that mobile landing is shown
  5. * and there is no need to show it on other pages.
  6. *
  7. * @returns {{
  8. * type: LANDING_IS_SHOWN
  9. * }}
  10. */
  11. export function landingIsShown() {
  12. return {
  13. type: LANDING_IS_SHOWN
  14. };
  15. }