This commit is contained in:
Rushil Umaretiya 2021-03-28 11:42:07 -04:00
commit ad3cc36cc6
3 changed files with 3 additions and 3 deletions

View File

@ -18,7 +18,7 @@ const Nav = (props) => {
<ul className="navbar-nav mr-auto">
<li className="nav-item">
<a className="nav-link text-white" href="/about">
PoliTalk/Openly <span className="sr-only">(current)</span>
ThinkOpenly <span className="sr-only">(current)</span>
</a>
</li>
<li className="nav-item">

View File

@ -7,7 +7,7 @@ const Post = (props) => {
user: { username: "HyperionLegion" },
post_title: "CLIMATE CHANGE",
post_text: "We are gonna die if we don't do anything about climate change!",
upvotes: 0,
upvotes: 2,
topics: ["climate change", "death"],
comments: [
"this guy is weird",

View File

@ -2,7 +2,7 @@ import React, { useState, useEffect } from "react";
const Profile = (props) => {
const [state, setState] = useState({
user: { username: "" },
user: { username: "HyperionLegion" },
topics: ["climate change", "covid19"],
});
const [stocks, setStocks] = useState([]);