Skip to content

Instantly share code, notes, and snippets.

@MostlyFocusedMike
Last active October 13, 2023 10:16
Show Gist options
  • Save MostlyFocusedMike/34ecb9484f818a52c80cf064709078ea to your computer and use it in GitHub Desktop.
Save MostlyFocusedMike/34ecb9484f818a52c80cf064709078ea to your computer and use it in GitHub Desktop.
// /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