Files
react-native-code-push/Examples/CodePushDemoApp/CodePushDemoAppTests/InstallUpdateTests/resources/PassNotifyApplicationReadyTest.js
Geoffrey Goh 9b87d7e2a8 feedback
2015-12-23 22:53:58 -08:00

21 lines
404 B
JavaScript

"use strict";
import React, {
AppRegistry,
Text,
View,
} from "react-native";
let NotifyApplicationReadyTest = React.createClass({
render() {
return (
<View style={{backgroundColor: "white", padding: 40}}>
<Text>
Test Passed!
</Text>
</View>
);
}
});
AppRegistry.registerComponent("NotifyApplicationReadyTest", () => NotifyApplicationReadyTest);