mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-25 21:06:42 +07:00
added fake profile stats
This commit is contained in:
parent
a808045a7d
commit
3cdc382457
4 changed files with 75 additions and 1 deletions
|
@ -11,6 +11,7 @@ import { FlowGrid } from '~/components/flow/FlowGrid';
|
|||
import { FlowLayout } from '~/layouts/FlowLayout';
|
||||
import { Sticky } from '~/components/containers/Sticky';
|
||||
import { selectFlow } from '~/redux/flow/selectors';
|
||||
import { ProfilePageStats } from '~/containers/profile/ProfilePageStats';
|
||||
|
||||
type Props = RouteComponentProps<{ username: string }> & {};
|
||||
|
||||
|
@ -34,7 +35,12 @@ const ProfileLayout: FC<Props> = ({
|
|||
<Container className={styles.wrap}>
|
||||
<div className={styles.left}>
|
||||
<Sticky>
|
||||
<ProfilePageLeft profile={profile} username={username} />
|
||||
<div className={styles.row}>
|
||||
<ProfilePageLeft profile={profile} username={username} />
|
||||
</div>
|
||||
<div className={styles.row}>
|
||||
<ProfilePageStats />
|
||||
</div>
|
||||
</Sticky>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -14,3 +14,7 @@
|
|||
|
||||
.right {
|
||||
}
|
||||
|
||||
.row {
|
||||
margin-bottom: $gap;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue