diff --git a/src/ui/component/comment/view.jsx b/src/ui/component/comment/view.jsx index 096f35642..5ab76b8cb 100644 --- a/src/ui/component/comment/view.jsx +++ b/src/ui/component/comment/view.jsx @@ -1,25 +1,28 @@ // @flow import React from 'react'; import relativeDate from 'tiny-relative-date'; +import Button from 'component/button'; type Props = { author: string, + authorUri: string, message: string, timePosted: number, }; function Comment(props: Props) { - const { author, timePosted, message } = props; + const { author, authorUri, timePosted, message } = props; return (
{message}
+{message}
{/* The following is for adding threaded replies, upvoting and downvoting */} {/*