//@flow import React from "react"; import { Link } from "react-router-dom"; type Props = { path: string, baseUrl: string }; class Breadcrumb extends React.Component { render() { const { path, baseUrl } = this.props; if (path) { const paths = path.split("/"); return ( ); } return null; } } export default Breadcrumb;