1
0
Fork 0
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:
Fedor Katurov 2021-10-01 16:12:27 +07:00
parent a808045a7d
commit 3cdc382457
4 changed files with 75 additions and 1 deletions

View file

@ -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>

View file

@ -14,3 +14,7 @@
.right {
}
.row {
margin-bottom: $gap;
}