Skip to main content
Version: Next

Breadcrumb

Breadcrumb component for displaying navigation paths.

Live Example

Loading component...

Try It

Edit the code below to experiment with the component:

Live Editor
function Demo() {
  return (
    <Breadcrumb
      items={[
        { title: 'Home', href: '/' },
        { title: 'Library', href: '/library' },
        { title: 'Data' },
      ]}
      separator="/"
    />
  );
}
Result
Loading...

Import

import { Breadcrumb } from '@superset/components';

Improve this page

This documentation is auto-generated from the component's Storybook story. Help improve it by editing the story file.