mirror of
https://github.com/fleetdm/fleet
synced 2026-05-18 06:28:40 +00:00
- Refactor imports of PropTypes to use the prop-types package - Upgrade dependencies that were setting off deprecation warnings
10 lines
258 B
JavaScript
10 lines
258 B
JavaScript
import PropTypes from 'prop-types';
|
|
|
|
export default PropTypes.shape({
|
|
description: PropTypes.string,
|
|
detail_updated_at: PropTypes.string,
|
|
id: PropTypes.number,
|
|
name: PropTypes.string,
|
|
platform: PropTypes.string,
|
|
updated_at: PropTypes.string,
|
|
});
|