Skip to content

Instantly share code, notes, and snippets.

@productioncoder
Last active October 3, 2018 18:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save productioncoder/f1cb31dc2c167d789c6058bda7e2b0c3 to your computer and use it in GitHub Desktop.
Save productioncoder/f1cb31dc2c167d789c6058bda7e2b0c3 to your computer and use it in GitHub Desktop.
Youtube NextUpVideo in RelatedVideos
import React from 'react';
import {VideoPreview} from '../VideoPreview/VideoPreview';
import './RelatedVideos.scss';
import {NextUpVideo} from './NextUpVideo/NextUpVideo';
export function RelatedVideos(props) {
return (
<div className='related-videos'>
<NextUpVideo/>
<VideoPreview horizontal={true}/>
<VideoPreview horizontal={true}/>
<VideoPreview horizontal={true}/>
</div>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment