mirror of
https://github.com/empayre/fleet.git
synced 2024-11-08 09:43:51 +00:00
ee3d96eb53
* Updates eslint packages * Expected parentheses around arrow function argument having a body with curly braces * Prop type `object` is forbidden * Visible, non-interactive elements should not have mouse or keyboard event listeners * Prop type is defined but not used * Unexpected use of file extension "jsx" * Expected 'this' to be used by class method * HTML entities must be escaped * Prevent default behavior on more options button click
18 lines
456 B
JavaScript
18 lines
456 B
JavaScript
import { PropTypes } from 'react';
|
|
|
|
export default PropTypes.shape({
|
|
detail_updated_at: PropTypes.string,
|
|
hostname: PropTypes.string,
|
|
id: PropTypes.number,
|
|
ip: PropTypes.string,
|
|
mac: PropTypes.string,
|
|
memory: PropTypes.number,
|
|
os_version: PropTypes.string,
|
|
osquery_version: PropTypes.string,
|
|
platform: PropTypes.string,
|
|
status: PropTypes.string,
|
|
updated_at: PropTypes.string,
|
|
uptime: PropTypes.number,
|
|
uuid: PropTypes.string,
|
|
});
|