Skip to content

Commit

Permalink
Add missing license to UnimplementedView.js
Browse files Browse the repository at this point in the history
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 facebook#13952

Differential Revision: D5056778

Pulled By: javache

fbshipit-source-id: feb106946a9a34cfdf2df63de21305ac779296f4
  • Loading branch information
Arsen Ghazaryan authored and facebook-github-bot committed May 13, 2017
1 parent 962e664 commit 49e6d39
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions Libraries/Components/UnimplementedViews/UnimplementedView.js
Original file line number Diff line number Diff line change
@@ -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.
Expand Down

0 comments on commit 49e6d39

Please sign in to comment.