mirror of
https://github.com/fleetdm/fleet
synced 2026-05-18 14:38:53 +00:00
- Refactor imports of PropTypes to use the prop-types package - Upgrade dependencies that were setting off deprecation warnings
8 lines
193 B
JavaScript
8 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,
|
|
});
|