Ankilan/src/components/view/translatable-word.jsx

10 lines
299 B
React
Raw Normal View History

2020-03-11 03:31:37 +00:00
import React from 'react';
import {connect} from 'react-redux';
import {TextField} from 'react-native-material-textfield';
const InputWord = props => {
2020-03-13 20:45:31 +00:00
const submit = () => {};
2020-03-11 03:31:37 +00:00
return <TextField label={'Your word'} onChange={submit} />;
};
export default connect(state => ({}), {})(InputWord);