2015-09-22 11:57:08 -07:00
|
|
|
/**
|
|
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
|
|
*
|
2018-02-16 18:24:55 -08:00
|
|
|
* This source code is licensed under the MIT license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree.
|
2015-09-22 11:57:08 -07:00
|
|
|
*
|
|
|
|
* @flow
|
2018-02-20 20:13:22 -08:00
|
|
|
* @format
|
2015-09-22 11:57:08 -07:00
|
|
|
*/
|
2016-10-19 08:36:55 -07:00
|
|
|
|
2018-02-20 20:13:22 -08:00
|
|
|
'use strict';
|
2015-09-22 11:57:08 -07:00
|
|
|
|
2018-02-20 20:13:22 -08:00
|
|
|
const AnimatedImplementation = require('AnimatedImplementation');
|
2018-07-17 22:31:07 -07:00
|
|
|
const FlatList = require('FlatList');
|
2018-02-20 20:13:22 -08:00
|
|
|
const Image = require('Image');
|
|
|
|
const ScrollView = require('ScrollView');
|
2018-07-17 22:31:07 -07:00
|
|
|
const SectionList = require('SectionList');
|
2018-02-20 20:13:22 -08:00
|
|
|
const Text = require('Text');
|
|
|
|
const View = require('View');
|
2017-03-02 15:09:39 -08:00
|
|
|
|
2018-07-02 13:26:38 -07:00
|
|
|
module.exports = {
|
|
|
|
...AnimatedImplementation,
|
2015-09-22 11:57:08 -07:00
|
|
|
View: AnimatedImplementation.createAnimatedComponent(View),
|
|
|
|
Text: AnimatedImplementation.createAnimatedComponent(Text),
|
|
|
|
Image: AnimatedImplementation.createAnimatedComponent(Image),
|
2018-02-20 20:13:22 -08:00
|
|
|
ScrollView: AnimatedImplementation.createAnimatedComponent(ScrollView),
|
2018-07-17 22:31:07 -07:00
|
|
|
FlatList: AnimatedImplementation.createAnimatedComponent(FlatList),
|
|
|
|
SectionList: AnimatedImplementation.createAnimatedComponent(SectionList),
|
2015-09-22 11:57:08 -07:00
|
|
|
};
|