Skip to content

Instantly share code, notes, and snippets.

@productioncoder
Last active October 3, 2018 19:02
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/08c9faa8d4b3fb9047c2fd1514fc534d to your computer and use it in GitHub Desktop.
Save productioncoder/08c9faa8d4b3fb9047c2fd1514fc534d to your computer and use it in GitHub Desktop.
Youtube SideBar skeleton
import React from 'react';
import {SideBarItem} from './SideBarItem/SideBarItem';
import {Menu} from 'semantic-ui-react';
import './SideBar.scss';
export class SideBar extends React.Component {
render() {
return (
<Menu borderless vertical stackable fixed='left' className='side-nav'>
{/*...*/}
</Menu>
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment