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>
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With