Skip to content

Instantly share code, notes, and snippets.

@iwilsonq
Last active April 30, 2018 01:42
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 iwilsonq/329f005418f011483247f4e3ee9f6000 to your computer and use it in GitHub Desktop.
Save iwilsonq/329f005418f011483247f4e3ee9f6000 to your computer and use it in GitHub Desktop.
A Go script generated gist.
import React from 'react'
const Comment = props => {
return (
<div className="Comment">
<h4>{props.author}</h4>
<p>{props.text}</p>
</div>
)
}
export default Comment
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment