React example not work

Problem was in the file tsconfig.json at

{
  "compilerOptions": {
    "jsx": "preserve"
  }
}

because this is in the documentation and last month was corrected:

{
  "compilerOptions": {
    "jsx": "react-jsx"
  }
}

Now my plugin work :slight_smile: Thanks everyone!