import React from 'react'
import PropTypes from 'prop-types'
import classnames from 'classnames'
import BtnExtandedAction from './BtnExtandedAction.jsx'
const ContentItem = props => {
const status = props.contentType.availableStatuses.find(s => s.slug === props.statusSlug)
return (
)
}
export default ContentItem
ContentItem.propTypes = {
type: PropTypes.string.isRequired,
statusSlug: PropTypes.string.isRequired,
customClass: PropTypes.string,
label: PropTypes.string,
contentType: PropTypes.object,
onClickItem: PropTypes.func,
faIcon: PropTypes.string
}
ContentItem.defaultProps = {
label: '',
customClass: '',
onClickItem: () => {}
}