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
- There isn’t anything to compare
- github
- styled components
- API token
- github io
- git lab
- rewrites
- getModifierState
- API 토큰
- CSS
- SCSS
- nextjs
- react
- next.js css
- input type=file
- ngrok설치
- Git
- typescript react
- ngrok실행
- icon
- react env
- dart 변수
- react typescript
- 컨디셔널 렌더링
- fetch
- bootstrap
- npm styled-reset
- createGlobalStyle
- nextjs .env
- nextjs 설치
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