오전에 했던 Reducer 이어서 하기 // src/components/Friends.jsximport React, { useReducer, useRef } from 'react';import {v4 as uuid} from "uuid";const reducer = (state, action)=>{ let newState; if(action.type === "add"){ newState={ ...state, friends:[...state.friends, {id:uuid(), name:action.payload}] } }else if(action.type==="reset"){ newState={ ..