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