Posts

Showing posts from April, 2019

Modal - React-Bootstrap

import React, {Component} from 'react'; import 'bootstrap/dist/css/bootstrap.min.css'; import axios from 'axios'; import { ClipLoader } from 'react-spinners'; import { Modal, Card,Button } from 'react-bootstrap'; import Image from 'react-image-resizer'; class Recomendet extends Component { constructor(props) { super(props); this.apiURL = 'http://xyz.info/projects/api/products/'; this.ProductDetailsURL = 'http://xyz.info/projects/api/product/'; this.state = { products:[], isOpen:false, singleproduct:[], imageurl:'', disabled: false, loading: false, showcontent: false } this.selectModal = this.selectModal.bind(this); this.handleClose = this.handleClose.bind(this); this.handleShow = this.handleShow.bind(this); } selectModal(event) { let produ...