import React from "react"; import PropTypes from "prop-types"; import { COLOR_LIST } from "../../constants"; const BgColor = (props) => { const renderColor = () => { return COLOR_LIST.map((bgColor) => { const selected = bgColor.name === props.bgColor ? " selected" : ""; const divStyle = { backgroundColor: bgColor.color }; return (