import hbs from 'htmlbars-inline-precompile'; export default { title: 'Components|Breadcrumbs', }; export let Standard = () => { return { template: hbs`
Breadcrumbs

Breadcrumbs are only ever used in the secondary nav of the primary header.

`, }; }; export let Single = () => { return { template: hbs`
Single breadcrumb

Breadcrumbs are given a lot of emphasis and often double as a page title. Since they are also global state, they are important for helping a user keep their bearings.

`, }; };