mirror of
https://github.com/Rushilwiz/reinvest.git
synced 2025-04-05 13:00:19 -04:00
switched back to functional components
This commit is contained in:
parent
3c739f5e25
commit
94c0fd4405
|
@ -1,26 +1,25 @@
|
||||||
import React, { Component } from "react";
|
import React, { useState, useEffect } from "react";
|
||||||
import "./assets/Bank.css";
|
import "./assets/Portfolio.css";
|
||||||
|
|
||||||
class Bank extends Component {
|
const Portfolio = (props) => {
|
||||||
constructor(props) {
|
const [state, setState] = useState({});
|
||||||
super(props);
|
useEffect(() => {
|
||||||
this.state = { apiResponse: "" };
|
callAPI();
|
||||||
}
|
});
|
||||||
callAPI() {
|
|
||||||
|
const callAPI = () => {
|
||||||
fetch("http://localhost:9000/FETCHURL")
|
fetch("http://localhost:9000/FETCHURL")
|
||||||
.then((res) => res.text())
|
.then((res) => res.text())
|
||||||
.then((res) => this.setState()({ apiresponse: res }))
|
.then((res) => setState(res))
|
||||||
.catch((err) => err);
|
.catch((err) => err);
|
||||||
}
|
};
|
||||||
componentDidMount() {
|
|
||||||
this.callAPI();
|
|
||||||
}
|
|
||||||
render() {
|
|
||||||
return (
|
return (
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<h1 class="d-flex justify-content-center m-2 p-4">Bank</h1>
|
<h1 class="d-flex justify-content-center m-2 p-4">Bank</h1>
|
||||||
|
<h1></h1>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
};
|
||||||
}
|
|
||||||
export default Bank;
|
export default Bank;
|
||||||
|
|
|
@ -1,27 +1,25 @@
|
||||||
import React, { Component } from "react";
|
import React, { useState, useEffect } from "react";
|
||||||
import "./assets/Browse.css";
|
import "./assets/Browse.css";
|
||||||
|
|
||||||
class Browse extends Component {
|
const Portfolio = (props) => {
|
||||||
constructor(props) {
|
const [state, setState] = useState({});
|
||||||
super(props);
|
useEffect(() => {
|
||||||
this.state = { apiResponse: "" };
|
callAPI();
|
||||||
}
|
});
|
||||||
callAPI() {
|
|
||||||
|
const callAPI = () => {
|
||||||
fetch("http://localhost:9000/FETCHURL")
|
fetch("http://localhost:9000/FETCHURL")
|
||||||
.then((res) => res.text())
|
.then((res) => res.text())
|
||||||
.then((res) => this.setState()({ apiresponse: res }))
|
.then((res) => setState(res))
|
||||||
.catch((err) => err);
|
.catch((err) => err);
|
||||||
}
|
};
|
||||||
componentDidMount() {
|
|
||||||
this.callAPI();
|
|
||||||
}
|
|
||||||
render() {
|
|
||||||
return (
|
return (
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<h1 class="d-flex justify-content-center m-2 p-4">Browse</h1>
|
<h1 class="d-flex justify-content-center m-2 p-4">Browse</h1>
|
||||||
|
<h1></h1>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
};
|
||||||
}
|
|
||||||
|
|
||||||
export default Browse;
|
export default Browse;
|
||||||
|
|
|
@ -1,27 +1,25 @@
|
||||||
import React, { Component } from "react";
|
import React, { useState, useEffect } from "react";
|
||||||
import "./assets/Portfolio.css";
|
import "./assets/Portfolio.css";
|
||||||
class Portfolio extends Component {
|
|
||||||
constructor(props) {
|
const Portfolio = (props) => {
|
||||||
super(props);
|
const [state, setState] = useState({});
|
||||||
this.state = { apiResponse: "" };
|
useEffect(() => {
|
||||||
}
|
callAPI();
|
||||||
callAPI() {
|
});
|
||||||
|
|
||||||
|
const callAPI = () => {
|
||||||
fetch("http://localhost:9000/FETCHURL")
|
fetch("http://localhost:9000/FETCHURL")
|
||||||
.then((res) => res.text())
|
.then((res) => res.text())
|
||||||
.then((res) => this.setState()({ apiresponse: res }))
|
.then((res) => setState(res))
|
||||||
.catch((err) => err);
|
.catch((err) => err);
|
||||||
}
|
};
|
||||||
componentDidMount() {
|
|
||||||
this.callAPI();
|
|
||||||
}
|
|
||||||
render() {
|
|
||||||
return (
|
return (
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<h1 class="d-flex justify-content-center m-2 p-4">Portfolio</h1>
|
<h1 class="d-flex justify-content-center m-2 p-4">Portfolio</h1>
|
||||||
<h1>{this.state.apiResponse}</h1>
|
<h1></h1>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
};
|
||||||
}
|
|
||||||
|
|
||||||
export default Portfolio;
|
export default Portfolio;
|
||||||
|
|
|
@ -1,26 +1,25 @@
|
||||||
import React, { Component } from "react";
|
import React, { useState, useEffect } from "react";
|
||||||
import "./assets/Profile.css";
|
import "./assets/Portfolio.css";
|
||||||
class Profile extends Component {
|
|
||||||
constructor(props) {
|
const Portfolio = (props) => {
|
||||||
super(props);
|
const [state, setState] = useState({});
|
||||||
this.state = { apiResponse: "" };
|
useEffect(() => {
|
||||||
}
|
callAPI();
|
||||||
callAPI() {
|
});
|
||||||
|
|
||||||
|
const callAPI = () => {
|
||||||
fetch("http://localhost:9000/FETCHURL")
|
fetch("http://localhost:9000/FETCHURL")
|
||||||
.then((res) => res.text())
|
.then((res) => res.text())
|
||||||
.then((res) => this.setState()({ apiresponse: res }))
|
.then((res) => setState(res))
|
||||||
.catch((err) => err);
|
.catch((err) => err);
|
||||||
}
|
};
|
||||||
componentDidMount() {
|
|
||||||
this.callAPI();
|
|
||||||
}
|
|
||||||
render() {
|
|
||||||
return (
|
return (
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<h1 class="d-flex justify-content-center m-2 p-4">Profile</h1>
|
<h1 class="d-flex justify-content-center m-2 p-4">Profile</h1>
|
||||||
|
<h1></h1>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
};
|
||||||
}
|
|
||||||
|
|
||||||
export default Profile;
|
export default Portfolio;
|
||||||
|
|
BIN
website/images/logo.png
Normal file
BIN
website/images/logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 19 KiB |
Loading…
Reference in New Issue
Block a user