import React from "react"; import { Col, Container, Row, Image } from "react-bootstrap"; import { AiOutlineStar, AiFillStar } from 'react-icons/ai'; function Review (props) { const generateStars = () => { const stars = []; for (let i = 0; i < 3; i++) { stars.push( ); } for (let i = 0; i < 5 - 3; i++) { stars.push( ); } return stars; } return ( Ime Prezime Lorem Ipsum is simply dummy text of the printing and typesetting industry. {generateStars()} ); } export default Review;