mirror of
https://github.com/plankanban/planka.git
synced 2025-12-25 17:25:01 +03:00
12 lines
283 B
JavaScript
12 lines
283 B
JavaScript
import { useCallback, useState } from 'react';
|
|
|
|
export default (initialValue) => {
|
|
const [value, setValue] = useState(initialValue);
|
|
|
|
const handleChange = useCallback((_, { value: nextValue }) => {
|
|
setValue(nextValue);
|
|
}, []);
|
|
|
|
return [value, handleChange, setValue];
|
|
};
|