archive
/
Sphere
Archived
1
Fork 0
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
245 B
JavaScript
Raw Normal View History

2016-02-01 20:58:00 +00:00
import React from 'react-native';
2016-05-05 21:04:50 +01:00
import App from './app';
2016-02-01 20:58:00 +00:00
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);