1.0.0 • Published 5 years ago

breadcrumbz v1.0.0

Weekly downloads
-
License
ISC
Repository
-
Last release
5 years ago

Breadcrumbz


Easy React Breadcrumbs

Installation


npm install breadcrumbz

#or

yarn add breadcrumbz

Usage


import { BreadCrumbs } from 'breadcrumbz';

// Links for the Breadcrumbs

const links = [
  {
    link: 'http://github.com/',
    title: 'Home'
  },
  {
    link: 'http://google.com/',
    title: 'Profile',
    tintColor: '#3098'
  },
  {
    link: 'http://twitter.com/',
    title: 'Bookmarks',
    tintColor: 'red'
  }
];

<BreadCrumbs crumbs={links} />;

License


Breadcrumbz is licensed under the MIT License.