mirror of
https://github.com/lemeow125/Borrowing-TrackerFrontend.git
synced 2024-11-17 06:19:27 +08:00
Merge branch 'master' of git.keannu1.duckdns.org:keannu125/Borrowing-TrackerFrontend into feature/student_pages
This commit is contained in:
commit
9747166f49
1 changed files with 29 additions and 13 deletions
|
@ -33,20 +33,36 @@ export default function Drawer() {
|
|||
marginRight: "4px",
|
||||
}}
|
||||
/>
|
||||
<p
|
||||
style={{
|
||||
...styles.text_light,
|
||||
...styles.text_S,
|
||||
...{ alignSelf: "center" },
|
||||
}}
|
||||
>
|
||||
{user.data
|
||||
? user.data.username
|
||||
: user.isError
|
||||
? "Error loading user"
|
||||
: "Loading user..."}
|
||||
</p>
|
||||
<div style={{ ...styles.flex_column, ...{ alignSelf: "center" } }}>
|
||||
<p
|
||||
style={{
|
||||
...styles.text_light,
|
||||
...styles.text_S,
|
||||
...{ textAlign: "left", margin: 0 },
|
||||
}}
|
||||
>
|
||||
{user.data
|
||||
? user.data.username
|
||||
: user.isError
|
||||
? "Error loading user"
|
||||
: "Loading user..."}
|
||||
</p>
|
||||
<p
|
||||
style={{
|
||||
...styles.text_light,
|
||||
...styles.text_S,
|
||||
...{ textAlign: "left", margin: 0 },
|
||||
}}
|
||||
>
|
||||
{user.data && user.data.is_technician
|
||||
? "Technician"
|
||||
: user.data && user.data.is_teacher
|
||||
? "Teacher"
|
||||
: "Student"}
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div
|
||||
style={{
|
||||
backgroundColor: "white",
|
||||
|
|
Loading…
Reference in a new issue