mirror of
https://bitbucket.org/tagfer_team/tagfer-app.git
synced 2025-12-25 11:47:43 +00:00
18 lines
373 B
JavaScript
18 lines
373 B
JavaScript
import React from 'react';
|
|
import { View } from 'react-native';
|
|
import FlashMessage from 'react-native-flash-message';
|
|
|
|
import AppNavigator from './src/config/router';
|
|
|
|
export default class App extends React.Component {
|
|
render() {
|
|
return (
|
|
<View style={{ flex: 1 }}>
|
|
<AppNavigator />
|
|
<FlashMessage position="top" />
|
|
</View>
|
|
);
|
|
}
|
|
}
|
|
|