# JSDocComment

A JSDoc comment block. This is a low-level component that merely creates the block. Consider using [JSDoc](../jsdoc/) if you want to create more complex comments.

* jsx

  ```tsx
  import { JSDocComment } from "@alloy-js/typescript";


  <JSDocComment >
    {children}
  </JSDocComment>
  ```

* stc

  ```ts
  import { JSDocComment } from "@alloy-js/typescript/stc";


  JSDocComment({  }).children(children)
  ```

## Props

|          |                                           |   |
| -------- | ----------------------------------------- | - |
| children | [Children](../../../core/types/children/) |   |
