// export type AxiosResponse<T> = {
//   data: T;
// };

export type Post = {
  userId: number;
  id: number;
  title: string;
  body: string;
};
