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.
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