styled-components 로 react-select CSS 하기

support·2022년 3월 26일
1

Errors

목록 보기
5/6

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)} 
  />

0개의 댓글