4 lines
179 B
JavaScript
4 lines
179 B
JavaScript
import { components } from 'react-select'
|
|
export const SingleValue = ({ children, ...props }) => (
|
|
<components.SingleValue {...props}>{children}</components.SingleValue>
|
|
); |