From 98d55015cabaae8e42c7f63a6930dd92a09bc1ea Mon Sep 17 00:00:00 2001 From: CJstate <142857225+CJstate@users.noreply.github.com> Date: Sun, 29 Mar 2026 08:10:27 -0400 Subject: [PATCH] Add Chinese README --- README.zh-CN.md | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 README.zh-CN.md diff --git a/README.zh-CN.md b/README.zh-CN.md new file mode 100644 index 00000000000..ce4498a9b26 --- /dev/null +++ b/README.zh-CN.md @@ -0,0 +1,31 @@ +# React 中文文档 + +用于构建用户界面的 JavaScript 库。 + +## ✨ 特性 + +- 🧩 组件化 +- ⚡ 虚拟 DOM +- 🔄 单向数据流 +- 📱 React Native + +## 🚀 快速开始 + +```bash +npx create-react-app my-app +cd my-app +npm start +``` + +## 📖 示例 + +```jsx +function App() { + return

你好,React!

+} +``` + +## 📚 资源 + +- 官网: https://react.dev +- 中文: https://zh-hans.react.dev