react-multimedia
Version:
A React component that displays images and video with gallery thumbnails.
25 lines (19 loc) • 481 B
JSX
import React from 'react';
import ReactPlayer from 'react-player';
class Exhibit extends React.Component {
render() {
const exhibitStyle = {
backgroundImage: "url(" + this.props.current.imageURL + ")"
};
return (
<div className="exhibit"
style={exhibitStyle}
>
<div className="video">
<ReactPlayer className="embed" url={this.props.current.videoURL}/>
</div>
</div>
)
}
}
export default Exhibit;