Created
April 30, 2017 22:06
-
-
Save geetotes/b10049df00c85680fdef7ac3d8d1a649 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
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