Skip to content

Instantly share code, notes, and snippets.

@oreqizer
Last active December 2, 2016 13:02
Show Gist options
  • Save oreqizer/e9ddb5712b2872cb54540c75b4c1a73c to your computer and use it in GitHub Desktop.
Save oreqizer/e9ddb5712b2872cb54540c75b4c1a73c to your computer and use it in GitHub Desktop.
An example of logic-less components.
import React, { Component } from 'react';
const FnComponent = props => (
// ...your JSX
);
class ClassComponent extends Component {
// ...lifecycle hooks
// ...handlers
render() {
return (
// ...your JSX
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment