about summary refs log tree commit diff
path: root/app/javascript/flavours/glitch/containers/video_container.js
blob: b206e9a100168c4772a5791f4e80f3428714aae8 (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 'flavours/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>
    );
  }

}