Last active
November 18, 2020 05:21
-
-
Save myogeshchavan97/d497537ca5ce181e001b5da93c1e825d to your computer and use it in GitHub Desktop.
order changed
This file contains 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
render() { | |
const nav = <header key="nav">{this.renderNav()}</header>; | |
const content = <main key="content">{this.renderContent()}</main>; | |
const { showOnTop } = this.props; | |
return ( | |
<React.Fragment> | |
{showOnTop ? [nav, content] : [content, nav]} | |
</React.Fragment> | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment