mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 17:05:18 +00:00
ccc8581229
Updates configuration and fixes issues introduced
11 lines
220 B
JavaScript
11 lines
220 B
JavaScript
import PropTypes from 'prop-types';
|
|
|
|
export default PropTypes.arrayOf(
|
|
PropTypes.shape({
|
|
name: PropTypes.string,
|
|
secret: PropTypes.string,
|
|
active: PropTypes.bool,
|
|
created_at: PropTypes.string,
|
|
}),
|
|
);
|