일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 브루트포스
- react-three/fiber
- 회고
- 오블완
- three.js
- 기본 문법
- 토이 프로젝트
- 자바
- 구현
- State
- 티스토리챌린지
- styled-components
- 프론트엔드
- 시뮬레이션
- 엔트리포인트
- 자료 구조
- 수학
- REACT
- 백준
- 코딩일기
- JavaScript
- HTML5
- poiemaweb
- 모던 자바스크립트 튜토리얼
- 자바스크립트
- Next.js
- 세그먼트 트리
Archives
- Today
- Total
목록버튼 (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