mirror of
https://github.com/sussy-code/smov.git
synced 2024-12-20 14:37:43 +01:00
Remove forwardRef
This commit is contained in:
parent
0ee269c877
commit
ca695b12a1
1 changed files with 43 additions and 45 deletions
|
@ -14,8 +14,7 @@ interface DropdownProps {
|
|||
options: Array<OptionItem>;
|
||||
}
|
||||
|
||||
export const Dropdown = React.forwardRef<HTMLDivElement, DropdownProps>(
|
||||
(props: DropdownProps) => (
|
||||
export function Dropdown(props: DropdownProps) {
|
||||
<div className="relative my-4 max-w-[18rem]">
|
||||
<Listbox value={props.selectedItem} onChange={props.setSelectedItem}>
|
||||
{({ open }) => (
|
||||
|
@ -56,6 +55,5 @@ export const Dropdown = React.forwardRef<HTMLDivElement, DropdownProps>(
|
|||
</>
|
||||
)}
|
||||
</Listbox>
|
||||
</div>
|
||||
)
|
||||
);
|
||||
</div>;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue