mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
e22217fe8b
Summary: Changelog: [General][Added] - Introduce `useAnimatedValue` hook to make it easier working with `Animated.Value`s in function components. Reviewed By: javache Differential Revision: D40434219 fbshipit-source-id: 3caf6ad98d11a534b8cc6816820bc1d125150380
16 lines
362 B
TypeScript
16 lines
362 B
TypeScript
/**
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @format
|
|
*/
|
|
|
|
import type {Animated} from './Animated';
|
|
|
|
export function useAnimatedValue(
|
|
initialValue: number,
|
|
config?: Animated.AnimatedConfig,
|
|
): Animated.Value;
|