JSFiddle - React, Tailwind, and code Playground
by Jose A
TypeScript
function breadcrumb(){
let url = readUrl();
console.log(url);
}
let readUrl = function() : string{
return window.location.href;
}
let sliceUrl = (url : string) => {
return url.split('/')
}