Creating an AnswerList Component
Learn to create an AnswerList on the web page.
We'll cover the following...
We'll cover the following...
Follow these steps to create a component that will render a list of answers:
Create a new file called
AnswerList.tsxwith the following import statements:
So, we are going to use an unordered list to render the answers without the bullet points. We have referenced a component, Answer, that we’ll create ...