일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Next
- domain
- 모던자바스크립트
- 자주 까먹는
- 모던 자바스크립트
- js
- vscode
- 구글 로그인
- deep dive
- 프로그래머스
- 내일배움캠프
- 티스토리챌린지
- 코드카타
- vercel
- useRouter
- 스파르타코딩클럽
- 셋팅
- CORS
- 코딩테스트
- 리터럴
- git
- 코테
- 프로젝트 셋팅
- error
- 초기셋팅
- nextjs
- React
- array정적메서드
- 오블완
- 소셜 로그인
- Today
- Total
목록TS (2)
도록
components ui libhttps://ui.shadcn.com/https://mui.com/tailwindcss 동적 css 도와주는 libhttps://cva.style/docscva 사용해보기 // 첫번째 인자 : 조합과 무관한 className // 두번째 인자 : 조합 const chipVariants = cva( ["text-sm", "border", "rounded-full", "px-2.5", "py-0.5"], { variants: { intent: { primary: "bg-blue-500 border-blue-500 text-white", secondary: "bg-gray-500 border-gray-500 ..
필수 자바스크립트구조분해할당배열 구조 분해 할당const array = [1, 2, 3, 4]; const [a, , , b] = array; // a=1, b=4const [c, ...rest] = array; // c=1, rest=[2, 3, 4] const [d, e=10, , , f =20] = array; // d=1, e=2, f=20 객체 구조 분해 할당const obj = { a: 1, b: 2, c: 3 };const {a, rest} = obj; // a=1, rest={b:2, c:3}const {a: first, b : num} = obj; // first=..