Skip to content

Instantly share code, notes, and snippets.

@fabysdev
Created February 27, 2019 08:36
Show Gist options
  • Save fabysdev/220dc9553bce71492ae47bf9b058db91 to your computer and use it in GitHub Desktop.
Save fabysdev/220dc9553bce71492ae47bf9b058db91 to your computer and use it in GitHub Desktop.
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