创建项目

1
2
3
yarn create-react-app my-app --template typescript
//or
npx create-react-app my-app --template typescript

React.Component

1
2
3
4
5
//index.js
import React from "react";
import { createRoot } from "react-dom/client";