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}
);