import React from 'react' import { View, Text } from 'react-native' import TextInputMask from '../lib/text-input-mask' import { textInputStype, container } from './styles' export default class Cpf extends React.Component { constructor(props) { super(props) this.state = { cpf: '' } } render() { return ( CPF { this.setState({ cpf: text }) }} style={textInputStype} /> ) } }