import { action } from './action';
import { DEFAULT_TARGET } from '../constant';
export const navigateTo = (config) => {
const { appid, targetUrl } = config;
return action({
actionType: 'navigate',
appid,
targetUrl: targetUrl || DEFAULT_TARGET
});
};