* Add GQL mutation for transfer project * Integrate transfer project GQL client method * Use update project GQL method for transfer project --------- Co-authored-by: neeraj <neeraj.rtly@gmail.com>
16 lines
511 B
TypeScript
16 lines
511 B
TypeScript
// https://github.com/creativetimofficial/material-tailwind/issues/419#issuecomment-1760474312
|
|
import React, { useEffect, useState } from 'react';
|
|
import { Select, SelectProps } from '@material-tailwind/react';
|
|
|
|
const AsyncSelect = React.forwardRef((props: SelectProps, ref: any) => {
|
|
const [key, setKey] = useState(0);
|
|
|
|
useEffect(() => setKey((preVal) => preVal + 1), [props]);
|
|
|
|
return <Select key={key} ref={ref} {...props} />;
|
|
});
|
|
|
|
AsyncSelect.displayName = 'AsyncSelect';
|
|
|
|
export default AsyncSelect;
|