"use client"; import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"; type Session = { id: string; date: string; weak: string; strength: string; score: number }; export function CreatorMemory({ sessions }: { sessions: Session[] }) { return ( Creator Memory Timeline {sessions.map((s) => (

{s.id}

{s.date}

Weak point: {s.weak}

Strength: {s.strength}

))} ); }