The code powering m.abunchtell.com https://m.abunchtell.com
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 
 

22 řádky
371 B

  1. import PureRenderMixin from 'react-addons-pure-render-mixin';
  2. const ExtendedVideoPlayer = React.createClass({
  3. propTypes: {
  4. src: React.PropTypes.string.isRequired
  5. },
  6. mixins: [PureRenderMixin],
  7. render () {
  8. return (
  9. <div>
  10. <video src={this.props.src} autoPlay muted loop />
  11. </div>
  12. );
  13. },
  14. });
  15. export default ExtendedVideoPlayer;