components.core.Breadcrumb.Crumb.tsx Maven / Gradle / Ivy
import React, { ReactElement } from 'react'
import { Link } from 'react-router-dom'
import { Crumb as CrumbProps } from './const'
export function Crumb({
label,
path,
}: CrumbProps): ReactElement | null {
if (!label) {
return null
}
if (!path) {
return {label}
}
return {label}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy