Skip to content

Instantly share code, notes, and snippets.

@dainelmawer
Created October 10, 2018 16:11
Show Gist options
  • Save dainelmawer/9bc04798984352ac127cf41bf2dde4a8 to your computer and use it in GitHub Desktop.
Save dainelmawer/9bc04798984352ac127cf41bf2dde4a8 to your computer and use it in GitHub Desktop.
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