UNPKG
@snipsonian/redux-first-router
Version:
latest (4.0.0)
4.0.0
3.3.0
3.1.0
3.0.3
3.0.2
2.1.0
2.0.0
1.12.0
1.11.0
1.9.1
1.8.2
1.8.0
1.7.0
1.6.0
1.5.4
1.5.3
1.5.2
1.5.0
1.4.4
Redux-first-router snippets
@snipsonian/redux-first-router
/
es
/
action
/
actions.js
11 lines
(10 loc)
•
201 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
export
function
createLocationAction
(
{
type
, payload = {}, query = {}, }
) {
return
{
type
, payload,
meta
: {
location
: {}, query, }, }; }