Summary: Changelog: [Internal] Flow ImageBackground

Reviewed By: christophpurrer

Differential Revision: D39754591

fbshipit-source-id: dfd1386e32186a3f903f7c01f77698a54c58939d
This commit is contained in:
Luna Wei 2022-09-28 15:48:40 -07:00 коммит произвёл Facebook GitHub Bot
Родитель 167965aedd
Коммит 4cdacb1bab
1 изменённых файлов: 17 добавлений и 0 удалений

Просмотреть файл

@ -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<ImageBackgroundProps> {}
module.exports = ImageBackground;