esbenp / esbenp/react-native-clean-form
Can not render element?
- Dominant language
- JavaScript
- Stars
- 472
- Forks
- 74
- PR merge metrics
- No merged PRs in 30d
Description
`test` can render,but Form can not.
my code:
```
import React, { Component } from 'react'
import { reduxForm } from 'redux-form'
import {
ActionsContainer,
Button,
FieldsContainer,
Fieldset,
Form,
FormGroup,
Label,
} from 'react-native-clean-form'
import {
Input,
Switch
} from 'react-native-clean-form/redux-form'
import { View,Text,Image } from 'react-native'
class ContactForm extends Component {
constructor(props){
super(props);
}
render(){
const {handleSubmit, authenticate, submitting} = this.props;
return (
test
{this.props.onSubmit}} submitting={submitting}>Save
)
}
}
ContactForm = reduxForm({
form: 'Form'
})(ContactForm)
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.