uuid
uuid 는 고유아이디 값을 랜덤하게 생성해준다. key 값을 줄 때 유용하다.
yarn add uuid
import { v4 as uuidv4 } from "uuid"; const id = uuidv4();