export type Comment = {
  created_at: string;
  post_id: number;
  body: string;
  creator: string;
  id: number;
  creator_id: number;
  post_url: string;
};
