-
Notifications
You must be signed in to change notification settings - Fork 37
Component_template
duskcloudxu edited this page Jun 8, 2020
·
3 revisions
Here put some brief introduction for the component
[some gif] or [some screenshot]
//some code example there, it should be a complete case including all the variables used in your case, like:
const [ image, setImage ] = useState({} as ImageInfo);
return (
<KeyboardAvoidingView style={styles.outerContainer} behavior="padding">
<FormImageInput
label="Business License Verification"
value={image}
setValue={setImage}
status={image?.uri ? 'success' : 'none'}
shape="circular"
/>
</KeyboardAvoidingView>
);here to attach a link to the component file on Github, like the example for Button Component:
Installation Guide
Project structure overview and Contribution Guide