개발자 되는 중/개발 공부

React uuid 쓰는 법

SeonChoco 2022. 12. 20. 15:34

react에서 uuid 쓰기위해서 설치

# yarn
yarn add uuid

 

임포트

import { v4 as uuid } from "uuid";

 

사용할 때 

 

 const newTodo = {
      id: uuid();
      title: todo.title,
      content: todo.content,
    };