Created
January 29, 2019 18:36
-
-
Save jangbl/f92a4db991fb7b23fbaafa9a55f98150 to your computer and use it in GitHub Desktop.
Youtube in React: show side bar and header in app component
This file contains hidden or 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 React, {Component} from 'react'; | |
| import HeaderNav from './containers/HeaderNav/HeaderNav'; | |
| import {SideBar} from './containers/SideBar/SideBar'; | |
| class App extends Component { | |
| render() { | |
| return ( | |
| <React.Fragment> | |
| <HeaderNav/> | |
| <SideBar/> | |
| </React.Fragment> | |
| ); | |
| } | |
| } | |
| export default App; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment