Youtube VideoPreview with Link
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* ... */ | |
import {Link} from 'react-router-dom'; | |
/*... */ | |
export class VideoPreview extends React.Component { | |
render() { | |
/* ... */ | |
return ( | |
<Link to={{pathname: this.props.pathname, search: this.props.search}}> | |
<div className={['video-preview', horizontal].join(' ')}> | |
{/* content unchanged */} | |
</div> | |
</Link> | |
); | |
} | |
/* ... */ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment