mirror of
https://github.com/Rushilwiz/reinvest.git
synced 2025-04-04 20:40: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 "./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>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
return (
|
||||
<div class="container">
|
||||
<h1 class="d-flex justify-content-center m-2 p-4">Bank</h1>
|
||||
<h1></h1>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default Bank;
|
||||
|
|
|
@ -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>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
return (
|
||||
<div class="container">
|
||||
<h1 class="d-flex justify-content-center m-2 p-4">Browse</h1>
|
||||
<h1></h1>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default Browse;
|
||||
|
|
|
@ -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>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
return (
|
||||
<div class="container">
|
||||
<h1 class="d-flex justify-content-center m-2 p-4">Portfolio</h1>
|
||||
<h1></h1>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default Portfolio;
|
||||
|
|
|
@ -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>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
export default Profile;
|
||||
return (
|
||||
<div class="container">
|
||||
<h1 class="d-flex justify-content-center m-2 p-4">Profile</h1>
|
||||
<h1></h1>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
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