Skip to content

Instantly share code, notes, and snippets.

@tkssharma
Created April 2, 2018 02:13
Show Gist options
  • Save tkssharma/ca7d8ae8490516d3df7db52522340712 to your computer and use it in GitHub Desktop.
Save tkssharma/ca7d8ae8490516d3df7db52522340712 to your computer and use it in GitHub Desktop.
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