Last updated
import { Breadcrumb } from 'components/lib';
function MyComponent({ ...props }){
const items = [
{ name: 'Home', url: '/' },
{ name: 'Dashboard', url: '/dashboard' },
{ name: 'Settings', url: '/dashboard/settings' }
];
return (
<div>
<Breadcrumb items={ items } />
</div>
);
}