import React from 'react'; import { PoeService } from '../services/poe.service'; import './stash-tab.scss'; interface IProps { data: any; } export class StashTab extends React.Component { componentDidMount() { console.log(this.props.data); PoeService.priceCheck(`Superior Laboratory Map`).then(res => { console.log(res); }); } render() { return
; } }