styled-components 로 react-select CSS 하기

styled-components 로 react-select CSS 하기

import styled from 'styled-components';
import Select from 'react-select'

const StyledSelect = styled(Select)`
  width: 150px;
`

  <StyledSelect 
    placeholder={'메뉴'} 
    options={foodList} 
    onChange={(e)=>handleSelectMenu(e)} 
  />

좋은 웹페이지 즐겨찾기