1
1
mirror of https://github.com/theoludwig/p61-project.git synced 2024-07-17 07:00:12 +02:00
p61-project/app/application/habits/stats.tsx
2024-04-12 15:27:11 +02:00

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