docs: Update use-in-typescript.zh-CN.md (#33434)

这里有点不对
/* src/App.ts */
应该是
/* src/App.tsx */
执行npx create-react-app my-project-name --template typescript后也只有App.tsx文件
This commit is contained in:
麦谷 2021-12-28 10:52:16 +08:00 committed by GitHub
parent 629caccaae
commit 67bf8903fb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -110,7 +110,7 @@ module.exports = {
首先把 `src/App.css` 文件修改为 `src/App.less`,然后修改样式引用为 less 文件。
```diff
/* src/App.ts */
/* src/App.tsx */
- import './App.css';
+ import './App.less';
```