import React from 'react-native'; import App from './app'; const { AppRegistry, } = React; class Sphere extends React.Component { render() { return ( ); } } AppRegistry.registerComponent('Sphere', () => Sphere);