BuyWhat/index.android.js

22 lines
384 B
JavaScript

/**
* Sample React Native App
* https://github.com/facebook/react-native
* @flow
*/
import React, { Component } from 'react';
import {
AppRegistry
} from 'react-native';
import MainApp from './src'
export default class BuyWhat extends Component {
render() {
return (
<MainApp dev='android' />
);
}
}
AppRegistry.registerComponent('BuyWhat', () => BuyWhat);