1How to open google translate!
2
3first you need a Browser
4second you need internet oh wait first you need internet than you need a Browser
5third you start typing GOOGLE TRANSLATE
6
7good boy now you can translate whatever you like :)
8
9have a nice day cutie
1React propTypes: objectOf vs shape?
2
3PropTypes.objectOf is used when describing an object whose properties are all the same type.
4
5 const objectOfProp = {
6 latitude: 37.331706,
7 longitude: -122.030783
8 }
9 // PropTypes.objectOf(PropTypes.number)
10
11
12PropTypes.shape is used when describing an object whose keys are known ahead of time, and may represent different types.
13
14 const shapeProp = {
15 name: 'Jane',
16 age: 25
17 }
18 // PropTypes.shape({ name: PropTypes.string, age: PropTypes.number })