ascvh@#%(^-^)V ?host,ip,port,protocol,title,domain,country,city,link,org ???à JFIF x x ?? C ?? C ?à " ?? ?? μ } !1AQa "q2?‘?#B±áR?e$3br? %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz??…???‰?’“”?–—???¢£¤¥|§¨?a23′μ?·?1o??????èéêòó???×?ùúáa?????èéê?òó???÷?ùú?? ?? μ w !1AQ aq"2?B‘?±á #3Rebr?{
File "router.js"
Full Path: /home/zcziejy/ryadselyen/elementor/app/assets/js/router.js
File size: 692 bytes
MIME-type: text/plain
Charset: utf-8
/**
* App Router
*
* TODO: Temporary solution for routing extensibility.
*/
class Router {
/**
* @type {*[]}
*/
routes = [];
history = null;
/**
*
* @param {{path: string, component: Object, props: Object}} route
*/
addRoute( route ) {
this.routes.push( route );
}
getRoutes() {
return this.routes.map( ( route ) => {
const props = route.props || {};
// Use the path as a key, and add it as a prop.
props.path = props.key = route.path;
return React.createElement( route.component, props );
} );
}
}
const router = new Router();
// Make router available for use within packages.
window.elementorAppPackages = {
router,
};
export default router;