2017-09-23 09:53:25 +02:00
|
|
|
import React, { Component } from 'react';
|
|
|
|
|
import {
|
|
|
|
|
AppRegistry,
|
|
|
|
|
View
|
|
|
|
|
} from 'react-native';
|
|
|
|
|
|
2017-09-23 11:31:22 +02:00
|
|
|
import Categories from './src/components/Categories';
|
|
|
|
|
|
2017-09-23 09:53:25 +02:00
|
|
|
export default class meme extends Component {
|
|
|
|
|
render() {
|
|
|
|
|
return (
|
2017-09-23 11:31:22 +02:00
|
|
|
<View>
|
|
|
|
|
<Categories />
|
2017-09-23 09:53:25 +02:00
|
|
|
</View>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
AppRegistry.registerComponent('meme', () => meme);
|