diff --git a/README.zh-CN.md b/README.zh-CN.md new file mode 100644 index 000000000000..ce4498a9b26b --- /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