Files
react-native-code-push/Examples/CodePushDemoApp/CodePushDemoAppTests/InstallUpdateTests/resources/RollbackTestBundleV2.js
2015-12-18 00:56:34 -08:00

27 lines
476 B
JavaScript

"use strict";
import React from "react-native";
import CodePush from "react-native-code-push";
let {
AppRegistry,
Text,
View,
} = React;
let RollbackTest = React.createClass({
componentDidMount() {
CodePush.restartApp();
},
render() {
return (
<View style={{backgroundColor: "white", padding: 40}}>
<Text>
Testing...
</Text>
</View>
);
}
});
AppRegistry.registerComponent("RollbackTest", () => RollbackTest);