This repository has been archived on 2024-11-20. You can view files and clone it, but cannot push or open issues or pull requests.

11 lines
309 B
TypeScript
Raw Normal View History

2024-04-12 13:43:49 +02:00
import { Stats } from "@/presentation/react/components/Stats/Stats"
2024-04-12 15:27:11 +02:00
import { useHabitsTracker } from "@/presentation/react/contexts/HabitsTracker"
2024-04-12 13:43:49 +02:00
const StatsPage: React.FC = () => {
2024-04-12 15:27:11 +02:00
const { habitsTracker } = useHabitsTracker()
2024-04-12 13:43:49 +02:00
2024-04-12 15:27:11 +02:00
return <Stats habitsTracker={habitsTracker} />
2024-04-12 13:43:49 +02:00
}
export default StatsPage