Last active
October 13, 2023 10:16
-
-
Save MostlyFocusedMike/34ecb9484f818a52c80cf064709078ea to your computer and use it in GitHub Desktop.
This file contains hidden or 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
// /src/components/Form.js | |
import React from "react" | |
class Form extends React.Component { | |
render() { | |
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" /> | |
<button>Add new cat</button> | |
<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