CommentAuthor.jsx 243 B

1234567
  1. import { Link } from 'react-router-dom'
  2. const CommentAuthor = ({ owner }) =>
  3. <Link to={`/profile/${owner?._id}`} style={{fontWeight:'bold',fontSize:'14px', color:'black'}}>
  4. {owner?.login || 'Anon'}
  5. </Link>
  6. export default CommentAuthor