JSX.Element

Namespace ... JSX has no exported member 'Element'.

I have a simple type like this
export type PageProps = {
  tags: Tags
  children?: JSX.Element[]
}


My tsconfig includes
...
    "jsx": "react-jsx",
    "jsxImportSource": "hono/jsx"

Any idea how to remove the error?
Was this page helpful?