Advertisement
Guest User

Untitled

a guest
Jan 11th, 2019
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. import React, { Component } from 'react';
  2. import moment from 'moment';
  3. import PropTypes from 'prop-types';
  4.  
  5. import { CommentType } from 'main/types';
  6.  
  7. import './Comment.scss';
  8.  
  9.  
  10. class Comment extends Component {
  11.   static propTypes = {
  12.     comment: CommentType,
  13.     shouldBlink: PropTypes.bool,
  14.     authorId: PropTypes.string
  15.   };
  16.  
  17.   static defaultProps = {
  18.     shouldBlink: false,
  19.     authorId: ''
  20.   };
  21. .
  22. .
  23. .
  24. .
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement