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