Material-ui adding Link component from react-router
问题 I'm struggling to add <Link/> component to my material-ui AppBar This is my navigation class: class Navigation extends Component { constructor(props) { super(props) } render() { var styles = { appBar: { flexWrap: 'wrap' }, tabs: { width: '100%' } } return ( <AppBar showMenuIconButton={false} style={styles.appBar}> <Tabs style={styles.tabs}> <Tab label='Most popular ideas'/> <Tab label='Latest ideas' /> <Tab label='My ideas' /> </Tabs> </AppBar> ) } } Which looks okay: Tabs are clickable, have