fix: correct text

This commit is contained in:
Gabriel Almeida 2023-04-01 18:57:03 -03:00
commit 5a231ae941

View file

@ -5,7 +5,7 @@ import { DropDownComponentType } from "../../types/components";
import { classNames } from "../../utils";
export default function Dropdown({value, options, onSelect}:DropDownComponentType) {
let [internalValue,setInternalValue] = useState(value??"choose an option")
let [internalValue,setInternalValue] = useState(value??"Choose an option")
return (
<>
<Listbox value={internalValue} onChange={(value)=>{