2018-05-14 20:57:33 +08:00
|
|
|
/**
|
2018-09-08 06:11:23 +08:00
|
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
2018-05-14 20:57:33 +08:00
|
|
|
*
|
|
|
|
|
* This source code is licensed under the MIT license found in the
|
|
|
|
|
* LICENSE file in the root directory of this source tree.
|
|
|
|
|
*
|
|
|
|
|
* @flow
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
|
|
const ReactNoopPersistent = require('./src/ReactNoopPersistent');
|
|
|
|
|
|
|
|
|
|
// TODO: decide on the top-level export form.
|
|
|
|
|
// This is hacky but makes it work with both Rollup and Jest.
|
2018-08-20 19:29:40 +08:00
|
|
|
module.exports = ReactNoopPersistent.default || ReactNoopPersistent;
|