Skip to content

Instantly share code, notes, and snippets.

@geetotes
Created April 30, 2017 22:06
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 geetotes/b10049df00c85680fdef7ac3d8d1a649 to your computer and use it in GitHub Desktop.
Save geetotes/b10049df00c85680fdef7ac3d8d1a649 to your computer and use it in GitHub Desktop.
class Step1 extends React.Component {
render() {
if (this.props.currentStep !== 1) {
return null;
}
return(
<p>This is step 1</p>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment