blob: 1b59ea0eebfb6145f821f8fddf88ff8402637717 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
const React = require('react');
const locationShape = require('./Location');
const {
bool,
shape
} = React.PropTypes;
module.exports = shape({
loading: bool,
location: locationShape
});
|