You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
625 B
25 lines
625 B
import React, { PureComponent } from 'react'
|
|
import PropTypes from 'prop-types'
|
|
import classnames from 'classnames'
|
|
|
|
export default class Card extends PureComponent {
|
|
static propTypes = {
|
|
className: PropTypes.string,
|
|
overrideClassName: PropTypes.bool,
|
|
title: PropTypes.string,
|
|
children: PropTypes.node,
|
|
}
|
|
|
|
render () {
|
|
const { className, overrideClassName, title } = this.props
|
|
|
|
return (
|
|
<div className={classnames({ 'card': !overrideClassName }, className)}>
|
|
<div className="card__title">
|
|
{ title }
|
|
</div>
|
|
{ this.props.children }
|
|
</div>
|
|
)
|
|
}
|
|
}
|
|
|