Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 | 31 |
Tags
- API 토큰
- Git
- nextjs .env
- bootstrap
- icon
- styled components
- CSS
- createGlobalStyle
- npm styled-reset
- SCSS
- fetch
- input type=file
- There isn’t anything to compare
- typescript react
- rewrites
- getModifierState
- ngrok실행
- react
- dart 변수
- 컨디셔널 렌더링
- git lab
- react typescript
- github
- github io
- nextjs 설치
- nextjs
- react env
- API token
- next.js css
- ngrok설치
Archives
- Today
- Total
목록typescript react (1)
꾸준히 성장하는 개발자

Prop Types는 prop이 거기에 있는지 없는지 확인해주지만 코드를 실행한 후에만 확인이 가능하다 그래서 그 방법이 다닌 다른 방법을 사용해볼 수 있다 import styled from "styled-components"; const Container = styled.div``; interface CircleProps { bgColor: string; } function Circle({ bgColor }: CircleProps) { return ; } export default Circle; Prop Type들을 객체로 만들어서 정의해주는것이다 interface CircleProps { bgColor: string; } 이렇게 interface 를 적어서 prop들을 모아놓은 객체 이름을 작성하고 ..
React
2022. 5. 27. 18:57