README
MoleculeBreadcrumb​
Breadcrumbs, or a breadcrumb navigation, can help to enhance how users navigate to previous page levels of a website, especially if that website has many pages or products.
Installation​
npm install @s-ui/react-molecule-breadcrumb --save
Usage​
import MoleculeBreadcrumb from '@s-ui/react-molecule-breadcrumb'
const breadcrumbItems = [
{
label: 'accusantium',
url: 'https://github.com/SUI-Components/sui-components'
},
{
label: 'current section'
}
]
return (
<BreadcrumbBasic items={breadcrumbItems} />
)
Find full description and more examples in the demo page.