mirror of
https://github.com/empayre/fleet.git
synced 2024-11-07 09:18:59 +00:00
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,
|
||
|
});
|