내일 배움 캠프 4기 TIL(23.01.17)

baesee·2023년 1월 19일
0

내일배움캠프

목록 보기
66/75

Check List

  • Typescript 생성
  • tailwind 설치
  • Redux 초기 설정
  • tsconfig.json 설정

Learn

  • tsx 함수
const 변수명:React.FC = ()=>{}
  • interface
  interface newListType {
    id: number;
    text: string;
    isDone: boolean;
  }

const newList: newListType = {
      id: id++,
      text,
      isDone: false,
    };
  • any type
    : any는 최대한 사용을 하지 않는다.any를 쓰는 순간 TS를 쓰는 이유가 많이 사라짐

0개의 댓글