Options
All
  • Public
  • Public/Protected
  • All
Menu

Module "components/breadcrumb.d"

Index

Variables

Const Breadcrumb

Breadcrumb: (props: IBreadcrumbProps) => IBreadcrumb
import { Components } from "gd-sprest-bs";

// Create the breadcrumb
let el = document.querySelector("#breadcrumb");
let breadcrumb = Components.Breadcrumb({
    el: el,
    items: [
        { text: "Root", href: "/" },
        { text: "Web 1", href: "/web" },
        { text: "Web 1-1", href: "/web/1" }
    ]
});

Type declaration

Generated using TypeDoc