18 lines
263 B
JavaScript
18 lines
263 B
JavaScript
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);
|