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

components.breadcrumbs.Crumb.ts Maven / Gradle / Ivy

import React from 'react';

export interface Crumb {
  key: string;
  label: string;
  onClick?: (e?: React.SyntheticEvent) => void;
  link?: string;
  type?: string;
  clickable?: boolean;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy