mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
322d0e00e2
Summary: Changes `Animated` so that the convenience components are lazily initialized. Reviewed By: TheSavior Differential Revision: D9394785 fbshipit-source-id: 1a2c9a9af500c02d6c91ccb5ddff341c94b17bd1
18 lines
383 B
JavaScript
18 lines
383 B
JavaScript
/**
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @flow strict-local
|
|
* @format
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
const View = require('View');
|
|
|
|
const createAnimatedComponent = require('createAnimatedComponent');
|
|
|
|
module.exports = createAnimatedComponent(View);
|