Created
October 10, 2018 16:11
-
-
Save dainelmawer/9bc04798984352ac127cf41bf2dde4a8 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { Component } from 'react'; | |
import Input from './input'; | |
import Button from './button'; | |
import TextArea from './textarea'; | |
const Form = () => ( | |
<form> | |
<Input type="text" placeholder="Name" /> | |
<Input type="email" placeholder="Email" /> | |
<Input type="number" placeholder="Mobile" /> | |
<TextArea rows="5" /> | |
<Button type="submit" label="Submit" /> | |
</form> | |
); | |
export default Form; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment