mirror of
https://github.com/zhigang1992/react-native-code-push.git
synced 2026-05-14 02:14:52 +08:00
21 lines
404 B
JavaScript
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); |