Skip to content

Instantly share code, notes, and snippets.

@DreySkee
Created January 31, 2017 00:09
Show Gist options
  • Save DreySkee/b1f82650503ef3831f7d515906a5d32e to your computer and use it in GitHub Desktop.
Save DreySkee/b1f82650503ef3831f7d515906a5d32e to your computer and use it in GitHub Desktop.
5 - Wordpress API + ReactJS
import React from 'react';
export default class App extends React.Component {
constructor(props) {
super(props);
}
render() {
return (
<div className="wrapper">
{this.props.children}
</div>
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment