mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-10 08:54:40 +00:00
19 lines
445 B
JavaScript
19 lines
445 B
JavaScript
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import Card from 'themes/glitch/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} />;
|
|
}
|
|
|
|
}
|