From 3e84fc1b9d522879ed6061a6ea2ef3b2390971c3 Mon Sep 17 00:00:00 2001 From: nkanchinadam <53796958+nkanchinadam@users.noreply.github.com> Date: Sat, 10 Apr 2021 16:33:04 -0400 Subject: [PATCH] Add files via upload --- src/components/Profile.tsx | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/src/components/Profile.tsx b/src/components/Profile.tsx index 023db73..eea2200 100644 --- a/src/components/Profile.tsx +++ b/src/components/Profile.tsx @@ -60,23 +60,21 @@ const Profile = () => { callAPI(); }, []); return ( -
+

Profile

-

Hello {state.user.username}!

-

Your Pools:

+

{state.user.username}'s Pools

{state.pools.map((pool) => { return (
+ style={{minHeight: 50, minWidth: '200px', maxWidth: '200px', border: '3px #000000 solid', verticalAlign: 'center', textAlign: 'center', padding: '10px 10px 5px 10px', margin: '0px 10px 0px 10px', display: 'inline'}}> {pool.title}
);