Files
web/components/MyPages/Blocks/Overview/Stats/index.tsx
2024-04-12 16:25:52 +02:00

16 lines
369 B
TypeScript

import Progress from "./Progress"
import TotalPoints from "./TotalPoints"
import styles from "./stats.module.css"
import type { StatsProps } from "@/types/components/myPages/myPage/stats"
export default function Stats({ user }: StatsProps) {
return (
<section className={styles.stats}>
<TotalPoints user={user} />
<Progress />
</section>
)
}