diff --git a/frontend/src/pages/Stats.tsx b/frontend/src/pages/Stats.tsx index 6c0b814..29a177c 100644 --- a/frontend/src/pages/Stats.tsx +++ b/frontend/src/pages/Stats.tsx @@ -11,7 +11,7 @@ import { } from "recharts"; import WordCloud from "../stats/WordCloud"; -function PostsPerDay() { +const StatPage = () => { const [data, setData] = useState([]); const [error, setError] = useState(null); const [loading, setLoading] = useState(true); @@ -50,9 +50,10 @@ function PostsPerDay() { +