|
|
@ -2,6 +2,8 @@ import React from "react";
|
|
|
|
import {Avatar} from "antd";
|
|
|
|
import {Avatar} from "antd";
|
|
|
|
import {List, Typography} from "antd";
|
|
|
|
import {List, Typography} from "antd";
|
|
|
|
import StarRatings from "react-star-ratings";
|
|
|
|
import StarRatings from "react-star-ratings";
|
|
|
|
|
|
|
|
import Twemoji from "react-twemoji";
|
|
|
|
|
|
|
|
import "./Reviews.css";
|
|
|
|
|
|
|
|
|
|
|
|
const {Text, Paragraph} = Typography;
|
|
|
|
const {Text, Paragraph} = Typography;
|
|
|
|
const colorList = ['#f0932b', '#badc58', '#6ab04c', '#eb4d4b', '#0abde3', '#9b59b6', '#3498db', '#22a6b3'];
|
|
|
|
const colorList = ['#f0932b', '#badc58', '#6ab04c', '#eb4d4b', '#0abde3', '#9b59b6', '#3498db', '#22a6b3'];
|
|
|
@ -23,7 +25,11 @@ class SingleReview extends React.Component {
|
|
|
|
name='rating'
|
|
|
|
name='rating'
|
|
|
|
/>
|
|
|
|
/>
|
|
|
|
<Text style={{fontSize: 12, color: "#aaa"}} type="secondary"> {review.createdAt}</Text><br/>
|
|
|
|
<Text style={{fontSize: 12, color: "#aaa"}} type="secondary"> {review.createdAt}</Text><br/>
|
|
|
|
<Paragraph ellipsis={{ rows: 3, expandable: true }} style={{color: "#777"}}>{review.content}</Paragraph>
|
|
|
|
<Twemoji options={{className: 'twemoji'}}>
|
|
|
|
|
|
|
|
<Paragraph ellipsis={{rows: 3, expandable: true}} style={{color: "#777"}}>
|
|
|
|
|
|
|
|
{review.content}
|
|
|
|
|
|
|
|
</Paragraph>
|
|
|
|
|
|
|
|
</Twemoji>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|