switched back to functional components

This commit is contained in:
Joshua Hsueh 2021-01-30 16:51:29 -05:00
parent 3c739f5e25
commit 94c0fd4405
5 changed files with 78 additions and 84 deletions

View File

@ -1,26 +1,25 @@
import React, { Component } from "react";
import "./assets/Bank.css";
import React, { useState, useEffect } from "react";
import "./assets/Portfolio.css";
class Bank extends Component {
constructor(props) {
super(props);
this.state = { apiResponse: "" };
}
callAPI() {
const Portfolio = (props) => {
const [state, setState] = useState({});
useEffect(() => {
callAPI();
});
const callAPI = () => {
fetch("http://localhost:9000/FETCHURL")
.then((res) => res.text())
.then((res) => this.setState()({ apiresponse: res }))
.then((res) => setState(res))
.catch((err) => err);
}
componentDidMount() {
this.callAPI();
}
render() {
};
return (
<div class="container">
<h1 class="d-flex justify-content-center m-2 p-4">Bank</h1>
<h1></h1>
</div>
);
}
}
};
export default Bank;

View File

@ -1,27 +1,25 @@
import React, { Component } from "react";
import React, { useState, useEffect } from "react";
import "./assets/Browse.css";
class Browse extends Component {
constructor(props) {
super(props);
this.state = { apiResponse: "" };
}
callAPI() {
const Portfolio = (props) => {
const [state, setState] = useState({});
useEffect(() => {
callAPI();
});
const callAPI = () => {
fetch("http://localhost:9000/FETCHURL")
.then((res) => res.text())
.then((res) => this.setState()({ apiresponse: res }))
.then((res) => setState(res))
.catch((err) => err);
}
componentDidMount() {
this.callAPI();
}
render() {
};
return (
<div class="container">
<h1 class="d-flex justify-content-center m-2 p-4">Browse</h1>
<h1></h1>
</div>
);
}
}
};
export default Browse;

View File

@ -1,27 +1,25 @@
import React, { Component } from "react";
import React, { useState, useEffect } from "react";
import "./assets/Portfolio.css";
class Portfolio extends Component {
constructor(props) {
super(props);
this.state = { apiResponse: "" };
}
callAPI() {
const Portfolio = (props) => {
const [state, setState] = useState({});
useEffect(() => {
callAPI();
});
const callAPI = () => {
fetch("http://localhost:9000/FETCHURL")
.then((res) => res.text())
.then((res) => this.setState()({ apiresponse: res }))
.then((res) => setState(res))
.catch((err) => err);
}
componentDidMount() {
this.callAPI();
}
render() {
};
return (
<div class="container">
<h1 class="d-flex justify-content-center m-2 p-4">Portfolio</h1>
<h1>{this.state.apiResponse}</h1>
<h1></h1>
</div>
);
}
}
};
export default Portfolio;

View File

@ -1,26 +1,25 @@
import React, { Component } from "react";
import "./assets/Profile.css";
class Profile extends Component {
constructor(props) {
super(props);
this.state = { apiResponse: "" };
}
callAPI() {
import React, { useState, useEffect } from "react";
import "./assets/Portfolio.css";
const Portfolio = (props) => {
const [state, setState] = useState({});
useEffect(() => {
callAPI();
});
const callAPI = () => {
fetch("http://localhost:9000/FETCHURL")
.then((res) => res.text())
.then((res) => this.setState()({ apiresponse: res }))
.then((res) => setState(res))
.catch((err) => err);
}
componentDidMount() {
this.callAPI();
}
render() {
};
return (
<div class="container">
<h1 class="d-flex justify-content-center m-2 p-4">Profile</h1>
<h1></h1>
</div>
);
}
}
};
export default Profile;
export default Portfolio;

BIN
website/images/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB