// @flow
import * as React from 'react';
import { IntlProvider } from 'react-intl';
import Link from '../link/Link';
import IconHome from '../../icons/general/IconHome';
import Breadcrumb from './Breadcrumb';
import notes from './Breadcrumb.stories.md';
export const regular = () => (
Box Engineering
);
export const withMultipleCrumbs = () => (
Box Engineering
Frameworks
Front End
React
Box React UI
);
export default {
title: 'Components|Breadcrumb',
component: Breadcrumb,
parameters: {
notes,
},
};