forked from nonsensical-dev/zenyx-engine
18 lines
518 B
JavaScript
18 lines
518 B
JavaScript
![]() |
import React from "react";
|
||
|
import Select from "react-select";
|
||
|
import { customStyles } from "../constants/customStyles";
|
||
|
import { languageOptions } from "../constants/languageOptions";
|
||
|
|
||
|
const LanguagesDropdown = ({ onSelectChange }) => {
|
||
|
return (
|
||
|
<Select
|
||
|
placeholder={`Filter By Category`}
|
||
|
options={languageOptions}
|
||
|
styles={customStyles}
|
||
|
defaultValue={languageOptions[0]}
|
||
|
onChange={(selectedOption) => onSelectChange(selectedOption)}
|
||
|
/>
|
||
|
);
|
||
|
};
|
||
|
|
||
|
export default LanguagesDropdown;
|