UNPKG

react-native-sortables

Version:

Powerful Sortable Components for Flexible Content Reordering in React Native

7 lines (5 loc) 209 B
import { useState } from 'react'; import { makeMutable } from 'react-native-reanimated'; export default function useMutableValue<T>(initialValue: T) { return useState(() => makeMutable(initialValue))[0]; }