about summary refs log tree commit diff
path: root/app/javascript/themes/glitch/containers/video_container.js
blob: 2b0e98666215c534140ddaf521387b1eafb82ed5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import React from 'react';
import PropTypes from 'prop-types';
import { IntlProvider, addLocaleData } from 'react-intl';
import { getLocale } from 'mastodon/locales';
import Video from 'themes/glitch/features/video';

const { localeData, messages } = getLocale();
addLocaleData(localeData);

export default class VideoContainer extends React.PureComponent {

  static propTypes = {
    locale: PropTypes.string.isRequired,
  };

  render () {
    const { locale, ...props } = this.props;

    return (
      <IntlProvider locale={locale} messages={messages}>
        <Video {...props} />
      </IntlProvider>
    );
  }

}