mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/51789 Adds `flow` or `noflow` to the remaining files that are lacking it in the `packages/helloworld` directory. Changelog: [Internal] Reviewed By: SamChou19815 Differential Revision: D75899853 fbshipit-source-id: 43990adb0827f35a8ca8c49c1787140ff47b8abb
15 lines
341 B
JavaScript
15 lines
341 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.
|
|
*
|
|
* @noflow
|
|
* @format
|
|
*/
|
|
|
|
import App from './App';
|
|
import {AppRegistry} from 'react-native';
|
|
|
|
AppRegistry.registerComponent('HelloWorld', () => App);
|