Skip to content

Instantly share code, notes, and snippets.

@nesbtesh
Created May 23, 2018 16:32
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 nesbtesh/8c811ac13bde32f7b0f98fa259428c7f to your computer and use it in GitHub Desktop.
Save nesbtesh/8c811ac13bde32f7b0f98fa259428c7f to your computer and use it in GitHub Desktop.
export default class SomethingView extends BaseTemplate {
// You can always overide the other class functions
renderFooter() {
return (
<div>
...coool footer
</div>
);
}
renderBody() {
const { someName } = this.state;
<div>
<input name="someName" value={someName} onChange={this.setValue} />
<div>
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment