Created
April 2, 2018 02:13
-
-
Save tkssharma/ca7d8ae8490516d3df7db52522340712 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
import React from 'react'; | |
function Question(props) { | |
return ( | |
<div> | |
<h2 className="question">{props.content}</h2> | |
</div> | |
); | |
} | |
export default Question; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment