# react **Repository Path**: manageritcast/react ## Basic Information - **Project Name**: react - **Description**: react相关代码 - **Primary Language**: NodeJS - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2021-08-27 - **Last Updated**: 2023-02-14 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # react ## 介绍 该代码库包含`react-ts`、`react-hooks`等相关项目代码 ## react-ts 参考网址:https://create-react-app.dev/docs/adding-typescript ### 新项目中使用ts ```bash npx create-react-app react-ts --template typescript cd react-ts npm run start ``` ### 已有项目中使用ts ```bash # 安装依赖包 npm install --save typescript @types/node @types/react @types/react-dom @types/jest # or yarn add typescript @types/node @types/react @types/react-dom @types/jest # 把 src/index.js 改成 src/index.tsx # 运行 npm run start ```