feat(WEB-167): update my pages layout to MVP wireframes
This commit is contained in:
15
components/MyPages/Blocks/Overview/Stats/index.tsx
Normal file
15
components/MyPages/Blocks/Overview/Stats/index.tsx
Normal file
@@ -0,0 +1,15 @@
|
||||
import Progress from "./Progress"
|
||||
import TotalPoints from "./TotalPoints"
|
||||
|
||||
import styles from "./stats.module.css"
|
||||
|
||||
import type { StatsProps } from "@/types/components/myPages/stats"
|
||||
|
||||
export default function Stats({ user }: StatsProps) {
|
||||
return (
|
||||
<section className={styles.stats}>
|
||||
<TotalPoints user={user} />
|
||||
<Progress />
|
||||
</section>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user