JSFiddle - React, Tailwind, and code Playground

by jakie8

JavaScript

var route = 'Home.about.intro';

var Routes = {
    Home: {
        about: {
            intro: function(){
                alert(1);
            }
        }
    }
};

var Utils = {
    route: function(path){
        if(typeof path==undefined){
        
        }
        
        var endpoints = route.split('.');
        
        
    }
};