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