UNPKG

react-select-search-nextjs

Version:

Lightweight select component for React with support for NextJS

8 lines (7 loc) 167 B
import isOption from './isOption'; export default function getValue(option) { if (!option) { return null; } return isOption(option) ? option.value : null; }