import React, { useState } from "react";import styled from "styled-components";import { AiOutlineDown } from "react-icons/ai";import { AiOutlineUp } from "react-icons/ai";const Dropdown = () => { const List = [ { name: '토마토' }, { name: '고구마' }, { name: '감자' }, { name: '오이*극혐' }, { name: '구황작물조아' }, ] //드롭여부 확인 const [isActive, setIsActive] = useState(false); const [category, ..