mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
26 lines
656 B
JavaScript
Executable File
26 lines
656 B
JavaScript
Executable File
/**
|
|
* 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.
|
|
*/
|
|
|
|
var React = require('React');
|
|
|
|
var fourOhFour = React.createClass({
|
|
render: function() {
|
|
return (
|
|
<html>
|
|
<head>
|
|
<meta httpEquiv="refresh" content="0; /react-native/docs/getting-started.html" />
|
|
</head>
|
|
<body></body>
|
|
</html>
|
|
);
|
|
}
|
|
});
|
|
|
|
module.exports = fourOhFour;
|