mirror of
https://git.bsd.gay/fef/nyastodon.git
synced 2024-11-01 23:21:11 +01:00
2bbf987a0a
* Redesign video player * Use new video player on static public pages too * Use media gallery component on static public pages too * Pause video when hiding it * Full-screen sizing on WebKit * Add aria labels to video player buttons * Display link card on public status page * Fix fullscreen from modal sizing issue * Remove contain: strict property to fix fullscreen from columns
18 lines
434 B
JavaScript
18 lines
434 B
JavaScript
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} />;
|
|
}
|
|
|
|
}
|