From 4cdacb1bab4277b971e571e0c644107ee367bb58 Mon Sep 17 00:00:00 2001 From: Luna Wei Date: Wed, 28 Sep 2022 15:48:40 -0700 Subject: [PATCH] Image Background Summary: Changelog: [Internal] Flow ImageBackground Reviewed By: christophpurrer Differential Revision: D39754591 fbshipit-source-id: dfd1386e32186a3f903f7c01f77698a54c58939d --- Libraries/Image/ImageBackground.js.flow | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 Libraries/Image/ImageBackground.js.flow diff --git a/Libraries/Image/ImageBackground.js.flow b/Libraries/Image/ImageBackground.js.flow new file mode 100644 index 00000000000..ad91f1a4e78 --- /dev/null +++ b/Libraries/Image/ImageBackground.js.flow @@ -0,0 +1,17 @@ +/** + * 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 + * @format + */ + +'use strict'; + +import * as React from 'react'; +import type {ImageBackgroundProps} from './ImageProps'; + +declare class ImageBackground extends React.Component {} +module.exports = ImageBackground;