1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-26 13:26:40 +07:00

profile pic on the left

This commit is contained in:
Fedor Katurov 2020-04-08 21:40:53 +07:00
parent 671f640a58
commit 911beea4ad
4 changed files with 10 additions and 9 deletions

View file

@ -32,15 +32,16 @@ const ProfilePageUnconnected: FC<Props> = ({
return (
<div className={styles.wrap}>
<div className={styles.left}>
<ProfilePageLeft profile={profile} username={username} />
</div>
<div className={styles.right}>
<Switch>
<Route path="/profile/:username" render={() => <div>DEFAULT</div>} />
<Route path="/profile/:username/tab" render={() => <div>TAB</div>} />
</Switch>
</div>
<div className={styles.left}>
<ProfilePageLeft profile={profile} username={username} />
</div>
</div>
);
};