# SingleLineCommentBlock

A single line comment block. The children are rendered as a prose element, which means that they are broken into multiple lines

* jsx

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


  <SingleLineCommentBlock >
    {children}
  </SingleLineCommentBlock>
  ```

* stc

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


  SingleLineCommentBlock({  }).children(children)
  ```

## Props

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