1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | 2x 1x | /* @flow */ import React, { Component } from 'react'; import { View, Text, StyleSheet, } from 'react-native'; export default class Pagination extends Component { render() { return ( <View style={styles.container}> <Text>I'm the Pagination component</Text> </View> ); } } const styles = StyleSheet.create({ container: { flex: 1, }, }); |