Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. import React from 'react';
  2.  
  3. const Question = ( props ) => {
  4. return (
  5. <div className="Question">
  6. <p>{props.title}</p>
  7. </div>
  8. )
  9. };
  10.  
  11. export default Question;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement