Skip to content

Instantly share code, notes, and snippets.

@MostlyFocusedMike
Last active July 30, 2019 22:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MostlyFocusedMike/a20061d465adf6140e0ce78846fea98b to your computer and use it in GitHub Desktop.
Save MostlyFocusedMike/a20061d465adf6140e0ce78846fea98b to your computer and use it in GitHub Desktop.
import React from 'react';
const Form = () => {
return (
<form>
<label htmlFor="owner">Owner</label>
<input type="text" name="owner" id="owner" />
<label htmlFor="description">Description</label>
<input
type="text"
name="description"
id="description"
/>
<input type="button" value="Add New Cat" />
<input type="submit" value="Submit" />
</form>
);
};
export default Form;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment