- Refactor imports of PropTypes to use the prop-types package - Upgrade dependencies that were setting off deprecation warnings
8 lines
160 B
JavaScript
8 lines
160 B
JavaScript
import PropTypes from 'prop-types';
|
|
|
|
export default PropTypes.shape({
|
|
description: PropTypes.string,
|
|
name: PropTypes.string,
|
|
query: PropTypes.string,
|
|
});
|