mirror of
https://github.com/myfatemi04/wheelshare-frontend.git
synced 2025-04-21 19:29:51 -04:00
Add files via upload
This commit is contained in:
parent
b8a213782e
commit
3e84fc1b9d
|
@ -60,23 +60,21 @@ const Profile = () => {
|
||||||
callAPI();
|
callAPI();
|
||||||
}, []);
|
}, []);
|
||||||
return (
|
return (
|
||||||
<div className="" style={{ minHeight: '100vh' }}>
|
<div className="" style={{ minHeight: '100vh', backgroundColor: '#F1EAE8' }}>
|
||||||
<h1
|
<h1
|
||||||
className="d-flex justify-content-center p-4"
|
className="d-flex justify-content-center p-4"
|
||||||
style={{ backgroundColor: '#F1EAE8', fontFamily: 'Impact' }}
|
style={{ backgroundColor: '#F1EAE8', fontFamily: 'Courier New' }}
|
||||||
>
|
>
|
||||||
Profile
|
Profile
|
||||||
</h1>
|
</h1>
|
||||||
<div className="container" style={{ fontFamily: 'Courier New' }}>
|
<div className="container" style={{ fontFamily: 'Courier New' }}>
|
||||||
<h1>Hello {state.user.username}!</h1>
|
<h2><u>{state.user.username}'s Pools</u></h2>
|
||||||
<h2>Your Pools:</h2>
|
|
||||||
<div className="">
|
<div className="">
|
||||||
{state.pools.map((pool) => {
|
{state.pools.map((pool) => {
|
||||||
return (
|
return (
|
||||||
<div
|
<div
|
||||||
className="text-left m-2 p-1"
|
className="text-left m-2 p-1"
|
||||||
style={{ backgroundColor: '#D6D1D0' }}
|
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'}}>
|
||||||
>
|
|
||||||
<a href={'pool/' + pool.id}>{pool.title}</a>
|
<a href={'pool/' + pool.id}>{pool.title}</a>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in New Issue
Block a user