9 lines
142 B
JavaScript
9 lines
142 B
JavaScript
|
import * as types from './actionsTypes';
|
||
|
|
||
|
export function deepLinkingOpen(params) {
|
||
|
return {
|
||
|
type: types.DEEP_LINKING.OPEN,
|
||
|
params
|
||
|
};
|
||
|
}
|