index.js 664 Bytes
import 'moment/locale/es'
import React, { Component } from 'react'
import { View, Text } from 'react-native'
import { connect } from 'react-redux'
import css from './style'
// AIP Movil

class Estadistica extends Component {
  static navigationOptions = () => ({
    title: 'Estadisticas',
    headerStyle: css.headerStyle,
    headerTitleStyle: css.headerTitleStyle
  });


  render() {
    return (
      <View style={[css.pane, css.fixStatusBar]}>
        <Text> ESTADISTICAS </Text>
      </View>
    )
  }
}

const mapStateToProps = () => ({
})

const mapDispatchToProps = () => ({
})

export default connect(mapStateToProps, mapDispatchToProps)(Estadistica)