Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 32f9e44

Browse files
committedApr 11, 2017
Set default values for exact and strict props
1 parent 94062a0 commit 32f9e44

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎src/LinkContainer.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ export default class LinkContainer extends Component {
1818
static propTypes = {
1919
children: PropTypes.element.isRequired,
2020
onClick: PropTypes.func,
21-
target: PropTypes.string,
2221
replace: PropTypes.bool,
2322
to: PropTypes.oneOfType([
2423
PropTypes.string,
@@ -35,6 +34,8 @@ export default class LinkContainer extends Component {
3534

3635
static defaultProps = {
3736
replace: false,
37+
exact: false,
38+
strict: false,
3839
activeClassName: 'active',
3940
};
4041

0 commit comments

Comments
 (0)
Please sign in to comment.