Skip to content

Instantly share code, notes, and snippets.

@productioncoder
Created September 1, 2018 13:16
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/c7b4035b12566ba1aff76f310250b32f to your computer and use it in GitHub Desktop.
Save productioncoder/c7b4035b12566ba1aff76f310250b32f to your computer and use it in GitHub Desktop.
App.js HeaderNav demo
import React, { Component } from 'react';
import HeaderNav from './containers/HeaderNav/HeaderNav';
class App extends Component {
render() {
return (
<HeaderNav/>
);
}
}
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment