import React, { Component } from 'react' export class ScrapperInfoComponent extends Component { constructor(props) { super(props) this.state = { } } render() { return ( {this.props.store} {this.props.status == 'success' ? Успешно : Неуспешно} {this.props.recievedAt.split('T')[0]} ) } } export default ScrapperInfoComponent