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