v3.1.5

Comment

JSX のコメントはビルドすると消えるため、コメントを残すビルトインコンポーネントを用意しています。

import { Comment } from "minista"

export default function () {
  return (
    <>
      <Comment text="+ comment" />
      <h1>index</h1>
      <Comment text="- comment" />
    </>
  )
}
<!-- + comment -->
<h1>index</h1>
<!-- - comment -->

CommentProps

type CommentProps = CommentUseContent | CommentUseChildren
type CommentUseContent = {
  text: string
  children?: string
}
type CommentUseChildren = {
  text?: string
  children: string
}