일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- js
- HTML5
- styled-components
- 구현
- 시뮬레이션
- 자료 구조
- JavaScript
- State
- 브루트포스
- 개발 회고
- 티스토리챌린지
- 모던 자바스크립트 튜토리얼
- 수학
- 오블완
- 회고
- 기본 문법
- REACT
- 자바
- 코딩일기
- 백준
- three.js
- 프론트엔드
- 세그먼트 트리
- 토이 프로젝트
- Next.js
- 해시를 사용한 집합과 맵
- react-three/fiber
- 자바스크립트
- poiemaweb
- 엔트리포인트
Archives
- Today
- Total
목록2025/03/09 (1)
코딩하는 고릴라

import { memo, MouseEvent, ReactNode, useCallback } from 'react';import { BaseComponentProps } from '../../type';export interface ButtonProps extends BaseComponentProps { className?: string; children?: ReactNode; onClick?: (e: MouseEvent) => void;}export const Button = memo(function Button(props: ButtonProps) { const { className, children } = props; const onClick = useCallback( (e: MouseEvent) ..
Project/melog
2025. 3. 9. 19:32