Skip to content

Instantly share code, notes, and snippets.

View JanderSilv's full-sized avatar
👨‍💻
Coding...

Jander Silva JanderSilv

👨‍💻
Coding...
View GitHub Profile
@JanderSilv
JanderSilv / select.tsx
Created June 20, 2024 18:17
Simple Select with sliced options
import React, { useEffect, useRef, useState } from 'react'
import SelectAtom from 'react-select'
export const Select = (props) => {
const {
options,
onInputChange,
noOptionsMessage,
} = props