2017-09-23 09:53:25 +02:00
|
|
|
import React, { Component } from 'react';
|
|
|
|
|
import {
|
|
|
|
|
AppRegistry,
|
|
|
|
|
View
|
|
|
|
|
} from 'react-native';
|
|
|
|
|
|
2017-09-23 21:28:20 +02:00
|
|
|
import Router from './src/Router';
|
2017-09-23 11:31:22 +02:00
|
|
|
|
2017-09-23 09:53:25 +02:00
|
|
|
export default class meme extends Component {
|
|
|
|
|
render() {
|
|
|
|
|
return (
|
2017-09-23 12:54:49 +02:00
|
|
|
<View style={{ flex: 1 }}>
|
2017-09-23 22:00:48 +02:00
|
|
|
<Router />
|
2017-09-23 09:53:25 +02:00
|
|
|
</View>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
AppRegistry.registerComponent('meme', () => meme);
|