mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 08:55:24 +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
13 lines
307 B
JavaScript
13 lines
307 B
JavaScript
import { PropTypes } from 'react';
|
|
|
|
export default PropTypes.shape({
|
|
columns: PropTypes.arrayOf(PropTypes.shape({
|
|
description: PropTypes.string,
|
|
name: PropTypes.string,
|
|
type: PropTypes.string,
|
|
})),
|
|
description: PropTypes.string,
|
|
name: PropTypes.string,
|
|
platform: PropTypes.string,
|
|
});
|