"use strict"; var React = require("react-native"); var { AppRegistry, Text, View, } = React; var NotifyApplicationReadyTest = React.createClass({ render() { return ( Test Passed! ); } }); AppRegistry.registerComponent("NotifyApplicationReadyTest", () => NotifyApplicationReadyTest);