mirror of
https://github.com/theoludwig/p61-project.git
synced 2024-07-17 07:00:12 +02:00
11 lines
309 B
TypeScript
11 lines
309 B
TypeScript
import { Stats } from "@/presentation/react/components/Stats/Stats"
|
|
import { useHabitsTracker } from "@/presentation/react/contexts/HabitsTracker"
|
|
|
|
const StatsPage: React.FC = () => {
|
|
const { habitsTracker } = useHabitsTracker()
|
|
|
|
return <Stats habitsTracker={habitsTracker} />
|
|
}
|
|
|
|
export default StatsPage
|