Last active
June 29, 2017 08:11
-
-
Save Jahans3/3c4419900e511bc89731553d1279e4cf 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 MyContainer extends Component { | |
classPropertyA = 'something' | |
classPropertyB = 123 | |
state = { | |
stateItemA: undefined, | |
stateItemB: 'default string' | |
} | |
someMethod = () => { | |
// ... | |
} | |
anotherMethod = () => { | |
// ... | |
} | |
render () { | |
return ( | |
<SomeComponent /> | |
) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment