mirror of
https://github.com/facebook/react.git
synced 2026-02-25 23:34:59 +00:00
* Facebook -> Meta in copyright rg --files | xargs sed -i 's#Copyright (c) Facebook, Inc. and its affiliates.#Copyright (c) Meta Platforms, Inc. and affiliates.#g' * Manual tweaks
17 lines
505 B
JavaScript
17 lines
505 B
JavaScript
/**
|
|
* 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.
|
|
*
|
|
* @flow
|
|
*/
|
|
|
|
import type {ReactFabricType} from './src/ReactNativeTypes';
|
|
import * as ReactFabric from './src/ReactFabric';
|
|
// Assert that the exports line up with the type we're going to expose.
|
|
// eslint-disable-next-line no-unused-expressions
|
|
(ReactFabric: ReactFabricType);
|
|
|
|
export * from './src/ReactFabric';
|