All Downloads are FREE. Search and download functionalities are using the official Maven repository.

components.core.Breadcrumb.Crumb.tsx Maven / Gradle / Ivy

The newest version!
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 - 2024 Weber Informatics LLC | Privacy Policy