import React, { Component } from "react"; import "./assets/Portfolio.css"; class Portfolio extends Component { constructor(props) { super(props); this.state = { apiResponse: "" }; } callAPI() { fetch("http://localhost:9000/FETCHURL") .then((res) => res.text()) .then((res) => this.setState()({ apiresponse: res })) .catch((err) => err); } componentDidMount() { this.callAPI(); } render() { return (