export interface Comment { id: number; author: string; date: string; children: any[]; parentCommentId: number | null; }