Guest User

Untitled

a guest
Dec 13th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. // index.js Page
  2. import React from "react";
  3. import withNavBar from "../src/withNavBar";
  4.  
  5. class Index extends React.Component {
  6. render() {
  7. return (
  8. <div>
  9. <p>Hello Next.js</p>
  10. </div>
  11. );
  12. }
  13. }
  14.  
  15. export default withNavBar(Index);
Add Comment
Please, Sign In to add comment