mirror of
https://github.com/zhigang1992/react-native-google-place-picker.git
synced 2026-01-12 22:50:27 +08:00
17 lines
316 B
JavaScript
17 lines
316 B
JavaScript
/**
|
|
* Sample React Native App
|
|
* https://github.com/facebook/react-native
|
|
* @flow
|
|
*/
|
|
|
|
import React, { Component } from 'react';
|
|
import {
|
|
AppRegistry,
|
|
StyleSheet,
|
|
Text,
|
|
View
|
|
} from 'react-native';
|
|
import WelcomeScreen from './WelcomeScreen';
|
|
|
|
AppRegistry.registerComponent('example', () => WelcomeScreen);
|