mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
ad652cf99c
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/51880 Updates the `sort-imports` lint rule. The main change is that it enforces newlines after the last import statement. Changelog: [Internal] Reviewed By: SamChou19815 Differential Revision: D76149902 fbshipit-source-id: 928871655c5de0613b18334d6fc0d71b3a971a18
17 lines
576 B
JavaScript
17 lines
576 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 strict-local
|
|
* @format
|
|
*/
|
|
|
|
export {default as SampleNativeComponent} from './src/SampleNativeComponent';
|
|
export type {NativeComponentType} from './src/SampleNativeComponent';
|
|
import {Commands as SampleNativeComponentCommands} from './src/SampleNativeComponent';
|
|
|
|
export {SampleNativeComponentCommands};
|
|
export {default as NativeSampleModule} from './src/NativeSampleModule';
|