diff --git a/Libraries/Components/UnimplementedViews/UnimplementedView.js b/Libraries/Components/UnimplementedViews/UnimplementedView.js index ba62f245932e..e7c488bdd2f6 100644 --- a/Libraries/Components/UnimplementedViews/UnimplementedView.js +++ b/Libraries/Components/UnimplementedViews/UnimplementedView.js @@ -1,15 +1,23 @@ /** - * Common implementation for a simple stubbed view. Simply applies the view's styles to the inner - * View component and renders its children. + * 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.