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.

queryStringActions.js 279B

12345678910
  1. import { QUERY_STRING_SET, QUERY_STRING_SET_REDUX } from "./queryStringActionConstants"
  2. export const setQueryStringRedux = (payload) => ({
  3. type: QUERY_STRING_SET_REDUX,
  4. payload,
  5. })
  6. export const setQueryString = (payload) => ({
  7. type: QUERY_STRING_SET,
  8. payload,
  9. })