mirror of
https://github.com/fleetdm/fleet
synced 2026-05-20 23:48:52 +00:00
- Refactor imports of PropTypes to use the prop-types package - Upgrade dependencies that were setting off deprecation warnings
5 lines
198 B
JavaScript
5 lines
198 B
JavaScript
import PropTypes from 'prop-types';
|
|
import hostInterface from 'interfaces/host';
|
|
import labelInterface from 'interfaces/label';
|
|
|
|
export default PropTypes.oneOfType([hostInterface, labelInterface]);
|