Skip to content

Instantly share code, notes, and snippets.

@productioncoder
Last active January 29, 2019 18:42
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/c2a138bd85a88f19c85fc666e88b37d9 to your computer and use it in GitHub Desktop.
Save productioncoder/c2a138bd85a88f19c85fc666e88b37d9 to your computer and use it in GitHub Desktop.
SideBar with items
render() {
return (
<Menu borderless vertical stackable fixed='left' className='side-nav'>
<SideBarItem highlight={true} label='Home' icon='home'/>
<SideBarItem label='Trending' icon='fire'/>
<SideBarItem label='Followers' icon='spy'/>
<SideBarItem label='History' icon='history'/>
<SideBarItem label='Watch later' icon='clock'/>
<SideBarItem label='Liked videos' icon='thumbs up'/>
<SideBarItem label='Movies and Shows' icon='film'/>
<SideBarItem label='Report history' icon='flag'/>
<SideBarItem label='Help' icon='help circle'/>
<SideBarItem label='Send feedback' icon='comment'/>
</Menu>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment