Skip to content

Instantly share code, notes, and snippets.

@pastelsky
Last active March 30, 2017 13:09
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 pastelsky/33c9750883c4c26879ac68a26ca91f1b to your computer and use it in GitHub Desktop.
Save pastelsky/33c9750883c4c26879ac68a26ca91f1b to your computer and use it in GitHub Desktop.
Order your methods
class SearchPage extends Component {
// Helper Functions
fetchResults() { ... }
fireAnalyticsEvent() { ... }
// Event Handlers
handlePagination() { ... }
handleProductClick() { ... }
// DOM Elements
get resultCount() { ... }
get productList() { ... }
render() {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment