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.
18 lines
434 B
18 lines
434 B
import React from 'react'; |
|
import PropTypes from 'prop-types'; |
|
import Card from '../features/status/components/card'; |
|
import { fromJS } from 'immutable'; |
|
|
|
export default class CardContainer extends React.PureComponent { |
|
|
|
static propTypes = { |
|
locale: PropTypes.string, |
|
card: PropTypes.array.isRequired, |
|
}; |
|
|
|
render () { |
|
const { card, ...props } = this.props; |
|
return <Card card={fromJS(card)} {...props} />; |
|
} |
|
|
|
}
|
|
|