Repository URL to install this package:
|
Version:
4.0.61 ▾
|
import React from 'react';
import { BreadCrumbProps } from './typings';
/**
* @todo
* use fixture to share the default data to list property
*
* use all renderProps functions to render the UI
*/
declare class BreadCrumb extends React.PureComponent<BreadCrumbProps> {
static defaultProps: {
list: ReadonlyArray<any>;
};
render(): JSX.Element;
}
export { BreadCrumb };
export default BreadCrumb;