I want to disable Link in some condition:
Link
render() { return ({this.props.canClick ? Test
Just making the URL null seems to do the trick:
const url = isDisabled ? null : 'http://www.stackoverflow.com'; return ( Click Me );