mirror of
https://github.com/status-im/react-native.git
synced 2025-01-18 05:23:26 +00:00
49e6d3965f
Summary: Added a missing license header to UnimplementedView.js No code logic got changed, just added a comment. So the regular CircleCI tests should be fine. Closes https://github.com/facebook/react-native/pull/13952 Differential Revision: D5056778 Pulled By: javache fbshipit-source-id: feb106946a9a34cfdf2df63de21305ac779296f4
48 lines
1.2 KiB
JavaScript
48 lines
1.2 KiB
JavaScript
/**
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* This source code is licensed under the BSD-style license found in the
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
*
|
|
* @providesModule UnimplementedView
|
|
* @flow
|
|
*/
|
|
'use strict';
|
|
|
|
var React = require('React');
|
|
var StyleSheet = require('StyleSheet');
|
|
|
|
/**
|
|
* Common implementation for a simple stubbed view. Simply applies the view's styles to the inner
|
|
* View component and renders its children.
|
|
*/
|
|
class UnimplementedView extends React.Component {
|
|
setNativeProps = () => {
|
|
// Do nothing.
|
|
// This method is required in order to use this view as a Touchable* child.
|
|
// See ensureComponentIsNative.js for more info
|
|
};
|
|
|
|
render() {
|
|
// Workaround require cycle from requireNativeComponent
|
|
var View = require('View');
|
|
return (
|
|
<View style={[styles.unimplementedView, this.props.style]}>
|
|
{this.props.children}
|
|
</View>
|
|
);
|
|
}
|
|
}
|
|
|
|
var styles = StyleSheet.create({
|
|
unimplementedView: {
|
|
borderWidth: 1,
|
|
borderColor: 'red',
|
|
alignSelf: 'flex-start',
|
|
}
|
|
});
|
|
|
|
module.exports = UnimplementedView;
|