import React, { Component } from 'react';
import { fetchJSON } from '../http.jsx';
// Stylesheets
import btnStylesheet from '../styles/buttons.jsx';
// Interactive button
import Interactive from 'react-interactive';
import Loading from '../images/loading.jsx'
class PirateSearch extends Component {
constructor() {
super();
this.state = {
response: [],
name: '',
loading: '',
}
}
sendToDownload(torrent) {
let data = {magnet: torrent.magnet}
fetchJSON('https://apollo.kevinmidboe.com/api/v1/pirate/add', 'POST', data)
.then((response) => {
console.log(response)
})
}
searchTheBay() {
const query = this.props.name;
const type = this.props.type;
this.setState({
loading: