课程: React: Creating and Hosting a Full-Stack Site (2022)

今天就学习课程吧!

今天就开通帐号,24,700 门业界名师课程任您挑!

Creating an add comment form

Creating an add comment form

- [Instructor] Great. So our website now has a way for us to add up votes to articles, but it's still lacking a way for us to add comments. So, let's figure out a way to add that functionality. A good place to start with this, since it's going to be a fairly complex component here is going to be to actually create a separate component that will write all of this code in. So what we're going to do is inside our components folder we're going to right-click and say new file. And we'll add a new form to this, which we'll call, "AddCommentForm.js". Okay. So, this is going to be a pretty straightforward component. What we're going to do is say, const add comment form. And for now, we'll just say that it takes no props, although we probably will add some of those later on. And then, let's just export this as the default export by saying, export default add comment form. Okay. So there are three basic things that we're going to want…

内容