BuyWhat/index.ios.js

22 lines
385 B
JavaScript
Raw Normal View History

2017-07-04 13:14:01 +00:00
/**
* Sample React Native App
* https://github.com/facebook/react-native
* @flow
*/
import React, { Component } from 'react';
import {
2017-07-05 05:45:46 +00:00
AppRegistry
2017-07-04 13:14:01 +00:00
} from 'react-native';
2017-07-05 05:45:46 +00:00
import MainApp from './src'
2017-07-04 13:14:01 +00:00
export default class BuyWhat extends Component {
render() {
return (
2017-07-05 05:45:46 +00:00
<MainApp dev='android' />
2017-07-04 13:14:01 +00:00
);
2017-07-05 05:45:46 +00:00
}
2017-07-04 13:14:01 +00:00
}
AppRegistry.registerComponent('BuyWhat', () => BuyWhat);