Skip to content

Instantly share code, notes, and snippets.

@productioncoder
Last active December 15, 2018 13:54
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/de74b18dad84767987741c658edf5548 to your computer and use it in GitHub Desktop.
Save productioncoder/de74b18dad84767987741c658edf5548 to your computer and use it in GitHub Desktop.
Youtube VideoInfoBox
import React from 'react';
import './VideoInfoBox.scss';
import {Image, Button} from 'semantic-ui-react';
export class VideoInfoBox extends React.Component {
render() {
return (
<div className='video-info-box'>
{/* TODO */}
</div>
);
}
}
.video-info-box {
display: grid;
grid: auto auto / 58px auto max-content;
align-items: center;
grid-row-gap: 16px;
/* TODO */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment