export interface Post { id: string; body: string; liked: boolean; likeCount: number; }
export interface Todo { id: string; title: string; completed: boolean; }