import React from 'react'; import PropTypes from 'prop-types'; import { capitalize } from 'lodash'; import './StatusCell.scss'; const StatusCell = ({ format, value }) => { switch (format) { case 'puppet': return ( ); case 'ansible': return ( ); default: return N/A; } }; StatusCell.propTypes = { format: PropTypes.string, value: PropTypes.any.isRequired, }; StatusCell.defaultProps = { format: 'plain', }; export default StatusCell;