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