breadcrumbs.stories.js 376 B

12345678910111213141516171819
  1. import React from 'react';
  2. import Breadcrumbs from 'app/components/breadcrumbs';
  3. export default {
  4. title: 'Core/Breadcrumbs',
  5. component: Breadcrumbs,
  6. };
  7. export const _Breadcrumbs = () => (
  8. <Breadcrumbs
  9. crumbs={[
  10. {label: 'Test 1', to: '#'},
  11. {label: 'Test 2', to: '#'},
  12. {label: 'Test 3', to: '#'},
  13. {label: 'Test 4', to: null},
  14. ]}
  15. />
  16. );