We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 32eabb9 commit b659d6dCopy full SHA for b659d6d
docs/api/mixins/State.md
@@ -72,6 +72,9 @@ var Tab = React.createClass({
72
var isActive = this.isActive(this.props.to, this.props.params, this.props.query);
73
var className = isActive ? 'active' : '';
74
var link = Link(this.props);
75
+ var link = (
76
+ <Link {...this.props} />
77
+ );
78
return <li className={className}>{link}</li>;
79
}
80
0 commit comments