Creating a Comment Form
Let's generate a component to house our new comment form, build it out and integrate it via Storybook, then add some tests:
yarn rw g component CommentForm
And startup Storybook again if it isn't still running:
yarn rw storybook
You'll see that there's a CommentForm entry in Storybook now, ready for us to get started.

Storybook
Let's build a simple form to take the user's name and their comment and add some styling to match it to the blog:
```jsx title="web/src/components/CommentForm/CommentForm.jsx" import { Form, Label, TextField, TextAreaField, Submit, } from '@redwoodjs/forms'
const CommentForm = () => { return (