Skip to content

Instantly share code, notes, and snippets.

View mtruebl1's full-sized avatar

Matt Trueblood mtruebl1

View GitHub Profile
@mtruebl1
mtruebl1 / SelectVirtualized.tsx
Created October 19, 2025 03:40
Virtualized Select component
import React, { useCallback, useEffect, useMemo, useState } from "react";
import { DropdownMenu } from "./DropdownMenu";
import FocusTrap from 'focus-trap-react';
import SearchIcon from '@patternfly/react-icons/dist/esm/icons/search-icon';
import styles from "./VirtualizedSelect.module.scss";
/**
* Functionality includes: multi-select or not, searchable or not, & takes an onChange callback.
*
*/