Search code examples
reactjstypescriptcommentstsx

How to comment on .tsx file?


I want to comment TSX code that I showed below. How can I do that?

<Form.Group controlId="type"> <Form.Label>Type</Form.Label>


Solution

  • There are a few ways.

    Single line (Option 1)

    <Form.Group controlId="type">
      {/* Hello World */}
      <Form.Label>Type</Form.Label>
    </Form.Group>
    

    Single line (Option 2)

    <Form.Group controlId="type">
      {
        // Hello World
      }
      <Form.Label>Type</Form.Label>
    </Form.Group>
    

    Multi-line

    <Form.Group controlId="type">
      {/* 
        Hello 
        World 
      */}
      <Form.Label>Type</Form.Label>
    </Form.Group>
    

    Attribute comment

    <Form.Group /* Hello World */ controlId="type">
      <Form.Label>Type</Form.Label>
    </Form.Group>