[typescript] todo list 만들기
타입스크립트를 처음 해보는데.. 처음 공부하면서 투두리스트 만들기를 해보았다. 프로젝트 생성프로젝트 생성yarn create vite ts-todo-list --template react-ts json-server 설치yarn add json-server 전체 코드todos.tsexport type Todo = { id: string; title: string; completed: boolean;};/** 조회 */export const getTodos = async (): Promise => { const res = await fetch("http://localhost:4000/todos"); const data = await res.json(); return data;};/** 등록 */e..
typescript
2024. 9. 25. 04:04
최근에 올라온 글
- Total
- Today
- Yesterday
링크