I want to comment TSX code that I showed below. How can I do that?
<Form.Group controlId="type"> <Form.Label>Type</Form.Label>
There are a few ways.
<Form.Group controlId="type">
{/* Hello World */}
<Form.Label>Type</Form.Label>
</Form.Group>
<Form.Group controlId="type">
{
// Hello World
}
<Form.Label>Type</Form.Label>
</Form.Group>
<Form.Group controlId="type">
{/*
Hello
World
*/}
<Form.Label>Type</Form.Label>
</Form.Group>
<Form.Group /* Hello World */ controlId="type">
<Form.Label>Type</Form.Label>
</Form.Group>