// @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, authorUri, timePosted, message } = props; return (
  • {message}

    {/* The following is for adding threaded replies, upvoting and downvoting */} {/*
    */} {/* */} {/* */} {/* */} {/* */} {/* */} {/*
    */}
  • ); } export default Comment;