How to use the @wq/react.useBreadcrumbs function in @wq/react

To help you get started, we’ve selected a few @wq/react examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github wq / wq.app / packages / material / src / components / Breadcrumbs.js View on Github external
export default function Breadcrumbs() {
    var links = useBreadcrumbs(),
        classes = useStyles(),
        { ButtonLink } = useComponents();

    if (!links) {
        links = [{ url: '/', label: 'Home', active: true }];
    }
    links[0].label = ;

    // FIXME: NavLink should already be able to detect current page
    links[links.length - 1].active = true;

    return (
        
            }>
                {links.map(({ url, label, active }, i) => (