mirror of
https://github.com/Rushilwiz/reinvest.git
synced 2025-04-04 20:40:19 -04:00
changed to class components in frontend
This commit is contained in:
parent
71214d9900
commit
fab1eb94a2
2
frontend/package-lock.json
generated
2
frontend/package-lock.json
generated
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"name": "reinvest",
|
||||
"name": "reinvest-frontend",
|
||||
"version": "0.1.0",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
|
|
|
@ -1,8 +1,26 @@
|
|||
import React from "react";
|
||||
import React, { Component } from "react";
|
||||
import "./assets/Bank.css";
|
||||
|
||||
const Bank = (props) => {
|
||||
return <h1>Bank page</h1>;
|
||||
};
|
||||
|
||||
class Bank 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 (
|
||||
<div class="container">
|
||||
<h1 class="d-flex justify-content-center m-2 p-4">Bank</h1>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
}
|
||||
export default Bank;
|
||||
|
|
|
@ -1,8 +1,27 @@
|
|||
import React from "react";
|
||||
import React, { Component } from "react";
|
||||
import "./assets/Browse.css";
|
||||
|
||||
const Browse = (props) => {
|
||||
return <h1>landing page</h1>;
|
||||
};
|
||||
class Browse 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 (
|
||||
<div class="container">
|
||||
<h1 class="d-flex justify-content-center m-2 p-4">Browse</h1>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
export default Browse;
|
||||
|
|
|
@ -1,8 +1,27 @@
|
|||
import React from "react";
|
||||
import React, { Component } from "react";
|
||||
import "./assets/Portfolio.css";
|
||||
|
||||
const Portfolio = (props) => {
|
||||
return <h1>homepage</h1>;
|
||||
};
|
||||
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 (
|
||||
<div class="container">
|
||||
<h1 class="d-flex justify-content-center m-2 p-4">Portfolio</h1>
|
||||
<h1>{this.state.apiResponse}</h1>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
export default Portfolio;
|
||||
|
|
|
@ -1,8 +1,26 @@
|
|||
import React from "react";
|
||||
import React, { Component } from "react";
|
||||
import "./assets/Profile.css";
|
||||
|
||||
const Profile = (props) => {
|
||||
return <h1>Profile page</h1>;
|
||||
};
|
||||
class Profile 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 (
|
||||
<div class="container">
|
||||
<h1 class="d-flex justify-content-center m-2 p-4">Profile</h1>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
export default Profile;
|
||||
|
|
Loading…
Reference in New Issue
Block a user