NAME

Chandra::Breadcrumb - Breadcrumb navigation component

SYNOPSIS

use Chandra::Breadcrumb;

my $crumbs = Chandra::Breadcrumb->new(
    items => [
        { label => 'Home',  route => '/' },
        { label => 'Users', route => '/users' },
        { label => 'Alice' },
    ],
);

$app->css(Chandra::Breadcrumb->css);
$crumbs->mount($app, '#breadcrumb');

SEE ALSO

Chandra::Nav, Chandra::Tabs, Chandra::Component