[230612] 사이드 프로젝트 작업

1. 사이드 프로젝트 작업

  • 오랜만에 사이드프로젝트 작업했다.
  • 참고할만한 간단한 리액트 프로젝트 있었으면 좋겠다 찾아보기
  • axios 로 작업중인데 서버에 받을 데이터를 DTO를 리액트에서도 작성했다.
  • Dtos 폴더를 만들고 작성했다.
export interface IPost {
  id: number;
  title: string;
  content: string;
  images: string[];
  user_only: boolean;
}

export interface IKindergarten {
  id: number;
  name: string;
  location: string;
  phone: string;
  working_hour: string;
  website: string;
  instagram: string;
  images: {
    banner: string[];
    place: string[];
  };
  teachers: {
    name: string;
    role: string;
    image: string;
  }[];
}
  • 이후 더미데이터를 바꿔주는 과정에서 api에 문제가 있길래 백엔드팀이랑 논의해야한다. 내일 회의때 말하기

Categories:

Updated:

Leave a comment