This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2017-09-13 18:39:10 -07:00
|
|
|
import React from 'react';
|
|
|
|
import PropTypes from 'prop-types';
|
2017-11-17 19:11:18 -08:00
|
|
|
import Card from 'themes/glitch/features/status/components/card';
|
2017-09-13 18:39:10 -07:00
|
|
|
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} />;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|