Created
May 23, 2018 16:32
-
-
Save nesbtesh/8c811ac13bde32f7b0f98fa259428c7f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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