mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 08:55:24 +00:00
dc4b97d15f
- Refactor imports of PropTypes to use the prop-types package - Upgrade dependencies that were setting off deprecation warnings
9 lines
193 B
JavaScript
9 lines
193 B
JavaScript
import PropTypes from 'prop-types';
|
|
|
|
export default PropTypes.shape({
|
|
alertType: PropTypes.string,
|
|
isVisible: PropTypes.bool,
|
|
message: PropTypes.string,
|
|
undoAction: PropTypes.func,
|
|
});
|