import React, { Component } from 'react' import './PhoneCardComponent.css' import Paper from '@mui/material/Paper'; import { Link } from 'react-router-dom'; export class PhoneCardComponent extends Component { constructor(props) { super(props) this.state = { } } render() { return (

{this.props.model}

Најниска цена:

{this.props.lowestPrice}

ден.
Вкупно понуди:

{this.props.total_offers}

) } } export default PhoneCardComponent