blob: 13e0a344db02d23472487fc05c41776ef7577ac6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
const React = require('react');
const { map } = require('react-immutable-proptypes');
const {
string,
shape
} = React.PropTypes;
module.exports = shape({
pathname: string,
hash: string,
query: map
});
|