This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
Sphere/index.ios.js

19 lines
263 B
JavaScript
Raw Normal View History

2016-02-01 20:58:00 +00:00
import React from 'react-native';
import App from './app/components/app.js';
const {
2016-01-31 21:38:54 +00:00
AppRegistry,
2016-02-01 20:58:00 +00:00
} = React;
2016-01-31 21:38:54 +00:00
2016-02-01 20:58:00 +00:00
class Sphere extends React.Component {
2016-01-31 21:38:54 +00:00
render() {
return (
2016-02-01 20:58:00 +00:00
<App />
2016-01-31 21:38:54 +00:00
);
}
}
AppRegistry.registerComponent('Sphere', () => Sphere);