UNPKG

react-native-sortables

Version:

Powerful Sortable Components for Flexible Content Reordering in React Native

8 lines (7 loc) 260 B
"use strict"; import { useState } from 'react'; import { makeMutable } from 'react-native-reanimated'; export default function useMutableValue(initialValue) { return useState(() => makeMutable(initialValue))[0]; } //# sourceMappingURL=useMutableValue.js.map