1. typescript的文件扩展名 *.tsx
    2. 在 tsconfig.json 配置中,启用 jsx渲染
    3. tsxconfig.json中,jsx的5种配置
      1. preserve,输出带有 jsx结构的文件,文件名是 .jsx
      2. react,输出原生 js,文件名是 .jsx
      3. react-jsx, react17引入的运行时配置
      4. react-jsxdev
      5. react-native,输出的结构是 jsx,文件名是 .js
    4. New JSX Transform
      1. 中文文档 https://zh-hans.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
      2. 英文 https://reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html

    image.png