Skip to content

Commit 49e6d39

Browse files
Arsen Ghazaryanfacebook-github-bot
authored andcommitted
Add missing license to UnimplementedView.js
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
1 parent 962e664 commit 49e6d39

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

Libraries/Components/UnimplementedViews/UnimplementedView.js

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,23 @@
11
/**
2-
* Common implementation for a simple stubbed view. Simply applies the view's styles to the inner
3-
* View component and renders its children.
2+
* Copyright (c) 2015-present, Facebook, Inc.
3+
* All rights reserved.
4+
*
5+
* This source code is licensed under the BSD-style license found in the
6+
* LICENSE file in the root directory of this source tree. An additional grant
7+
* of patent rights can be found in the PATENTS file in the same directory.
48
*
59
* @providesModule UnimplementedView
10+
* @flow
611
*/
7-
812
'use strict';
913

1014
var React = require('React');
1115
var StyleSheet = require('StyleSheet');
1216

17+
/**
18+
* Common implementation for a simple stubbed view. Simply applies the view's styles to the inner
19+
* View component and renders its children.
20+
*/
1321
class UnimplementedView extends React.Component {
1422
setNativeProps = () => {
1523
// Do nothing.

0 commit comments

Comments
 (0)