Created
February 27, 2019 08:36
-
-
Save fabysdev/220dc9553bce71492ae47bf9b058db91 to your computer and use it in GitHub Desktop.
This file contains 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
import React, {PureComponent} from "react"; | |
//#region lazy-imports | |
//#endregion | |
//#region component-helpers | |
//#endregion | |
class MyComponent extends PureComponent { | |
//#region static | |
static propTypes = {}; | |
//#endregion | |
//#region constructor | |
state = {}; | |
//#endregion | |
//#region lifecycle | |
//#endregion | |
//#region effects | |
//#endregion | |
//#region helpers | |
//#endregion | |
//#region callbacks | |
//#endregion | |
//#region render | |
render() { | |
return <div>MyComponent</div>; | |
} | |
//#endregion | |
} | |
export default MyComponent; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment