Skip to content

Instantly share code, notes, and snippets.

@DreySkee
Last active February 2, 2017 01:07
Show Gist options
  • Save DreySkee/981c98a30983b6e7dc388cb0a5ec15e1 to your computer and use it in GitHub Desktop.
Save DreySkee/981c98a30983b6e7dc388cb0a5ec15e1 to your computer and use it in GitHub Desktop.
16 - Wordpress API + ReactJS
import React from 'react';
import Nav from './Nav.js';
export default class App extends React.Component {
constructor(props) {
super(props);
}
render() {
return (
<div className="wrapper">
<Nav />
{this.props.children}
</div>
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment