Recent Posts
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
- Meta Learning
- FGVC
- REACT
- CV
- Depth estimation
- Front
- classification
- web
- algorithm
- clean code
- 자료구조
- nlp
- Torch
- GAN
- PRML
- math
- dl
- 알고리즘
- nerf
- 3d
- Python
- 딥러닝
- FineGrained
- 머신러닝
- pytorch
- computervision
- ML
- SSL
- cs
- Vision
- Today
- Total
목록todolist (1)
KalelPark's LAB
[ React ] TodoList 만들기
import React, {Component} from "react"; export default class App extends Component { state = { todoData : [ { id : "1", title : "공부하기", completed : true }, { id : "2", title : "책 읽기", completed : false }, { id : "1", title : "과제하기", completed : false } ], value : "" }; btnStyle = { color : "#fff", border : "none", padding : "5px 9px", borderRadius : "50%", cursor : "pointer", float : "right" } g..
Study/React
2023. 2. 1. 11:08