From c357cdd3d4e35c5ccf865518c39308f0c5bdd07d Mon Sep 17 00:00:00 2001 From: TimLi Date: Mon, 20 Mar 2023 21:38:53 +0800 Subject: [PATCH 1/8] translate the home page MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 翻译首页 --- src/components/Layout/HomeContent.js | 177 ++++++++++++--------------- 1 file changed, 79 insertions(+), 98 deletions(-) diff --git a/src/components/Layout/HomeContent.js b/src/components/Layout/HomeContent.js index 0a6380acfd..58671d0c87 100644 --- a/src/components/Layout/HomeContent.js +++ b/src/components/Layout/HomeContent.js @@ -131,7 +131,7 @@ export function HomeContent() { React

- The library for web and native user interfaces + 一个构建 Web 和原生用户界面的库

- Learn React + 学习 React - API Reference + API 参考文档
-
Create user interfaces from components
+
用组件创建用户界面
- React lets you build user interfaces out of individual pieces - called components. Create your own React components like{' '} - Thumbnail, LikeButton, and{' '} - Video. Then combine them into entire screens, pages, - and apps. + React 让你可以通过称为组件的单独部分来构建用户界面。 创建自己的 + React 组件像 ThumbnailLikeButton,和{' '} + Video。 然后将它们组合成整个屏幕、页面和应用程序。
@@ -169,22 +167,19 @@ export function HomeContent() {
- Whether you work on your own or with thousands of other - developers, using React feels the same. It is designed to let you - seamlessly combine components written by independent people, - teams, and organizations. + 无论您是独自工作还是与成千上万的其他开发人员合作,使用 React + 的感觉都是相同的。它旨在让您轻松地组合由独立个人、团队和组织编写的组件。
-
Write components with code and markup
+
用代码和标签编写组件
- React components are JavaScript functions. Want to show some - content conditionally? Use an if statement. - Displaying a list? Try array map(). Learning React is - learning programming. + React 组件是 JavaScript 函数。想要有条件地显示一些内容吗?使用{' '} + if 语句。展示一个列表?尝试使用数组{' '} + map() 方法。学习 React 就是学习编程。
@@ -192,22 +187,20 @@ export function HomeContent() {
- This markup syntax is called JSX. It is a JavaScript syntax - extension popularized by React. Putting JSX markup close to - related rendering logic makes React components easy to create, - maintain, and delete. + 这种标记语法称为 JSX。它是由 React 推广的 JavaScript 语法扩展。将 + JSX 标签与相关的渲染逻辑放在一起,使得创建、维护和删除 React + 组件变得容易。
-
Add interactivity wherever you need it
+
在任何需要的地方添加交互性
- React components receive data and return what should appear on the - screen. You can pass them new data in response to an interaction, - like when the user types into an input. React will then update the - screen to match the new data. + React + 组件接收数据并返回应该出现在屏幕上的内容。您可以通过响应交互(例如用户输入)向它们传递新数据。然后,React + 将更新屏幕以匹配新数据。
@@ -215,16 +208,15 @@ export function HomeContent() {
- You don’t have to build your whole page in React. Add React to - your existing HTML page, and render interactive React components - anywhere on it. + 你不必用 React 构建整个页面。将 React 添加到现有的 HTML + 页面中,在任何地方呈现交互式的 React 组件。
- Add React to your page + 将 React 添加到您的页面中
@@ -233,15 +225,17 @@ export function HomeContent() {
- Go full-stack
- with a framework + 使用框架 +
+ 进行全栈开发
- React is a library. It lets you put components together, but it - doesn’t prescribe how to do routing and data fetching. To build an - entire app with React, we recommend a full-stack React framework - like Next.js or{' '} - Remix. + React + 是一个库。它允许您将组件放在一起,但不规定如何进行路由和数据获取。要使用 + React 构建整个应用程序,我们建议使用像{' '} + Next.js 或{' '} + Remix 这样的全栈 React + 框架。
@@ -249,17 +243,15 @@ export function HomeContent() {
- React is also an architecture. Frameworks that implement it let - you fetch data in asynchronous components that run on the server - or even during the build. Read data from a file or a database, and - pass it down to your interactive components. + React + 也是一种架构。实现它的框架可以从运行于服务器甚至构建期间的异步组件中获取数据。从文件或数据库读取数据,并将其传递给交互式组件。
- Get started with a framework + 使用框架开始一个新项目
@@ -267,12 +259,11 @@ export function HomeContent() {
-
Use the best from every platform
+
博采众长
- People love web and native apps for different reasons. React - lets you build both web apps and native apps using the same - skills. It leans upon each platform’s unique strengths to let - your interfaces feel just right on every platform. + 人们因为不同的原因偏好网络应用或原生应用。React + 让您使用相同的技能构建 Web + 应用程序和原生应用程序。它依赖于每个平台独特的优势,使您的界面就像原生一样。
@@ -286,15 +277,14 @@ export function HomeContent() {

- Stay true to the web + 不忘初心

- People expect web app pages to load fast. On the server, - React lets you start streaming HTML while you’re still - fetching data, progressively filling in the remaining - content before any JavaScript code loads. On the client, - React can use standard web APIs to keep your UI - responsive even in the middle of rendering. + 人们期望网页加载速度更快。在服务器上,React + 可以让您在获取数据的同时开始流式传输 HTML,在任何 + JavaScript 代码加载之前逐步填充剩余内容。在客户端,React + 可以使用标准 Web API 使 UI + 保持响应,即使是在渲染过程中。

@@ -372,21 +362,20 @@ export function HomeContent() {

- Go truly native + 真正地原生

- People expect native apps to look and feel like their - platform.{' '} + 人们希望原生应用程序样式和体验都符合对应的平台。{' '} React Native {' '} - and{' '} + 和{' '} Expo{' '} - let you build apps in React for Android, iOS, and - more. They look and feel native because their UIs{' '} - are truly native. It’s not a web view—your - React components render real Android and iOS views - provided by the platform. + 让你可以使用 React 构建 Android、iOS + 等应用程序。它们的样式和体验都和原生应用程序一样,因为它们的用户界面{' '} + 真正的原生用户界面。这不是一个 Web + 视图——您的 React 组件由平台提供的真实 Android 或 iOS + 视图来渲染。

@@ -396,14 +385,13 @@ export function HomeContent() {
- With React, you can be a web and a native developer. Your - team can ship to many platforms without sacrificing the user - experience. Your organization can bridge the platform silos, and - form teams that own entire features end-to-end. + 使用 React,您可以成为 Web 和原生应用开发人员。 + 您的团队可以在不牺牲用户体验的情况下发布到许多平台。 + 您的组织可以抹平平台差异,并形成拥有端到端的全部功能的团队。
- Build for native platforms + 为原生平台构建
@@ -414,23 +402,22 @@ export function HomeContent() {
-
Upgrade when the future is ready
+
充分测试,安心升级
- React approaches changes with care. Every React commit is - tested on business-critical surfaces with over a billion - users. Over 100,000 React components at Meta help validate - every migration strategy. + React 非常谨慎地处理每个改动。每个 React + 提交都在拥有超过十亿用户的关键业务页面上进行测试。Meta 的 10 + 万个 React 组件帮助验证每种迁移策略。
- The React team is always researching how to improve React. - Some research takes years to pay off. React has a high bar - for taking a research idea into production. Only proven - approaches become a part of React. + React 团队始终在研究如何改进 + React。一些研究需要数年才能得到回报。 React + 对将研究想法转化为生产具有高标准要求,只有经过证明的方法才能成为 + React 的一部分。
- Read more React news + 阅读更多 React 新闻
@@ -438,7 +425,7 @@ export function HomeContent() {

- Latest React News + 最新 React 新闻

@@ -456,7 +443,7 @@ export function HomeContent() {
- Read more React news + 阅读更多 React 新闻
@@ -468,14 +455,10 @@ export function HomeContent() {
-
- Join a community
- of millions -
+
加入数百万人的社区
- You’re not alone. Two million developers from all over the - world visit the React docs every month. React is something - that people and teams can agree on. + 你并不孤单。每个月有来自世界各地的两百万开发者访问 React + 文档。React 是人们和团队可以达成共识的东西。
@@ -483,13 +466,10 @@ export function HomeContent() {
- This is why React is more than a library, an architecture, or - even an ecosystem. React is a community. It’s a place where - you can ask for help, find opportunities, and meet new - friends. You will meet both developers and designers, - beginners and experts, researchers and artists, teachers and - students. Our backgrounds may be very different, but React - lets us all create user interfaces together. + 这就是为什么 React + 不仅仅是一个库、一种架构,甚至不只是一个生态系统。React{' '} + 是一个社区。在这里你可以寻求帮助,发现机会并结交新朋友。你将会遇到开发者和设计师、初学者和专家、研究人员和艺术家、教师和学生等各行各业的人士。我们的背景可能非常不同,但 + React 让我们所有人都能够共同创建用户界面。
@@ -498,15 +478,16 @@ export function HomeContent() {
- Welcome to the
- React community + 欢迎来到 +
+ React 社区
- Get Started + 开始 React 之旅
From 4f33923332c602112df93dd2f89d350885b49dd5 Mon Sep 17 00:00:00 2001 From: Xavi Lee Date: Tue, 21 Mar 2023 08:19:26 +0800 Subject: [PATCH 2/8] update --- src/components/Layout/HomeContent.js | 69 ++++++++++++---------------- 1 file changed, 30 insertions(+), 39 deletions(-) diff --git a/src/components/Layout/HomeContent.js b/src/components/Layout/HomeContent.js index 58671d0c87..a4aab9074f 100644 --- a/src/components/Layout/HomeContent.js +++ b/src/components/Layout/HomeContent.js @@ -157,9 +157,7 @@ export function HomeContent() {
用组件创建用户界面
- React 让你可以通过称为组件的单独部分来构建用户界面。 创建自己的 - React 组件像 ThumbnailLikeButton,和{' '} - Video。 然后将它们组合成整个屏幕、页面和应用程序。 + React 让你可以通过组件来构建用户界面。你可以创建像 ThumbnailLikeButtonVideo 这样的组件。然后将它们组合成整个应用程序。
@@ -167,8 +165,8 @@ export function HomeContent() {
- 无论您是独自工作还是与成千上万的其他开发人员合作,使用 React - 的感觉都是相同的。它旨在让您轻松地组合由独立个人、团队和组织编写的组件。 + 无论你是独自工作还是与成千上万的其他开发人员合作,使用 React + 的感觉都是相同的。它旨在让你轻松地组合由独立个人、团队或组织编写的组件。
@@ -177,9 +175,9 @@ export function HomeContent() {
用代码和标签编写组件
- React 组件是 JavaScript 函数。想要有条件地显示一些内容吗?使用{' '} - if 语句。展示一个列表?尝试使用数组{' '} - map() 方法。学习 React 就是学习编程。 + React 组件是 JavaScript 函数。想要有条件地显示一些内容吗?使用 if 语句。 +
+ 想要展示一个列表?尝试使用数组的 map() 方法。学习 React 就是学习编程。
@@ -187,7 +185,7 @@ export function HomeContent() {
- 这种标记语法称为 JSX。它是由 React 推广的 JavaScript 语法扩展。将 + 这种标签语法称为 JSX。它是由 React 推广的 JavaScript 语法扩展。将 JSX 标签与相关的渲染逻辑放在一起,使得创建、维护和删除 React 组件变得容易。 @@ -196,10 +194,10 @@ export function HomeContent() {
-
在任何需要的地方添加交互性
+
在任何地方添加交互
React - 组件接收数据并返回应该出现在屏幕上的内容。您可以通过响应交互(例如用户输入)向它们传递新数据。然后,React + 组件接收数据并返回应该出现在屏幕上的内容。你可以通过响应交互(例如用户输入)向它们传递新数据。然后,React 将更新屏幕以匹配新数据。
@@ -208,7 +206,7 @@ export function HomeContent() {
- 你不必用 React 构建整个页面。将 React 添加到现有的 HTML + 你也可以不用 React 去构建整个页面,而只是将 React 添加到现有的 HTML 页面中,在任何地方呈现交互式的 React 组件。
@@ -216,7 +214,7 @@ export function HomeContent() { color="gray" icon="code" href="/learn/add-react-to-an-existing-project"> - 将 React 添加到您的页面中 + 将 React 添加到你已有的页面中
@@ -231,10 +229,8 @@ export function HomeContent() { React - 是一个库。它允许您将组件放在一起,但不规定如何进行路由和数据获取。要使用 - React 构建整个应用程序,我们建议使用像{' '} - Next.js 或{' '} - Remix 这样的全栈 React + 是一个库。它允许你将组件放在一起,但不关注路由和数据获取。要使用 + React 构建整个应用程序,我们建议使用像 Next.js 或 Remix 这样的全栈 React 框架。
@@ -244,7 +240,7 @@ export function HomeContent() {
React - 也是一种架构。实现它的框架可以从运行于服务器甚至构建期间的异步组件中获取数据。从文件或数据库读取数据,并将其传递给交互式组件。 + 也是一种架构。实现它的框架可以从运行时甚至构建期间的异步组件中获取数据,或从文件或数据库读取数据,并将其传递给交互式组件。
博采众长
- 人们因为不同的原因偏好网络应用或原生应用。React - 让您使用相同的技能构建 Web - 应用程序和原生应用程序。它依赖于每个平台独特的优势,使您的界面就像原生一样。 + 人们因为不同的原因偏好 Web 应用或原生应用。React + 让你使用相同的技能构建 Web + 应用程序和原生应用程序。它依赖于每个平台独特的优势,使你的界面就像原生一样。
@@ -281,10 +277,10 @@ export function HomeContent() {

人们期望网页加载速度更快。在服务器上,React - 可以让您在获取数据的同时开始流式传输 HTML,在任何 - JavaScript 代码加载之前逐步填充剩余内容。在客户端,React - 可以使用标准 Web API 使 UI - 保持响应,即使是在渲染过程中。 + 可以让你在获取数据的同时开始流式传输 HTML,在任何 + JavaScript 代码加载之前逐步填充剩余内容。在客户端,即使是在渲染过程中,React + 可以使用标准的 Web API 使 UI + 能够快速响应。

@@ -362,19 +358,15 @@ export function HomeContent() {

- 真正地原生 + 真正的原生

- 人们希望原生应用程序样式和体验都符合对应的平台。{' '} + 人们希望原生应用程序样式和体验都符合对应的平台。 React Native - {' '} - 和{' '} - Expo{' '} - 让你可以使用 React 构建 Android、iOS - 等应用程序。它们的样式和体验都和原生应用程序一样,因为它们的用户界面{' '} - 真正的原生用户界面。这不是一个 Web - 视图——您的 React 组件由平台提供的真实 Android 或 iOS + 和 Expo 让你可以使用 React 构建 Android、iOS + 等应用程序。它们的样式和体验都和原生应用程序一样,因为它们的用户界面是真正的原生用户界面。这不是一个 Web + 视图——你的 React 组件由平台提供的真实 Android 或 iOS 视图来渲染。

@@ -385,9 +377,8 @@ export function HomeContent() {
- 使用 React,您可以成为 Web 和原生应用开发人员。 - 您的团队可以在不牺牲用户体验的情况下发布到许多平台。 - 您的组织可以抹平平台差异,并形成拥有端到端的全部功能的团队。 + 使用 React,你可以成为 Web 和原生应用的开发人员。 + 你的团队可以在不牺牲用户体验的情况下发布到各个平台。你的组织可以忽略平台差异,并拥有端到端的全部功能。
@@ -458,7 +449,7 @@ export function HomeContent() {
加入数百万人的社区
你并不孤单。每个月有来自世界各地的两百万开发者访问 React - 文档。React 是人们和团队可以达成共识的东西。 + 文档。React 可以让人们达成共识。
@@ -467,7 +458,7 @@ export function HomeContent() {
这就是为什么 React - 不仅仅是一个库、一种架构,甚至不只是一个生态系统。React{' '} + 不仅仅是一个库、一种架构,甚至不只是一个生态系统。React 是一个社区。在这里你可以寻求帮助,发现机会并结交新朋友。你将会遇到开发者和设计师、初学者和专家、研究人员和艺术家、教师和学生等各行各业的人士。我们的背景可能非常不同,但 React 让我们所有人都能够共同创建用户界面。 From 8e7dc22249a658b16410c618b88cd1858f8a0ee4 Mon Sep 17 00:00:00 2001 From: Xavi Lee Date: Tue, 21 Mar 2023 08:25:08 +0800 Subject: [PATCH 3/8] fix ci --- src/components/Layout/HomeContent.js | 35 +++++++++++++++++----------- 1 file changed, 22 insertions(+), 13 deletions(-) diff --git a/src/components/Layout/HomeContent.js b/src/components/Layout/HomeContent.js index a4aab9074f..3e33cc566d 100644 --- a/src/components/Layout/HomeContent.js +++ b/src/components/Layout/HomeContent.js @@ -157,7 +157,9 @@ export function HomeContent() {
用组件创建用户界面
- React 让你可以通过组件来构建用户界面。你可以创建像 ThumbnailLikeButtonVideo 这样的组件。然后将它们组合成整个应用程序。 + React 让你可以通过组件来构建用户界面。你可以创建像{' '} + ThumbnailLikeButton 和{' '} + Video 这样的组件。然后将它们组合成整个应用程序。
@@ -175,9 +177,11 @@ export function HomeContent() {
用代码和标签编写组件
- React 组件是 JavaScript 函数。想要有条件地显示一些内容吗?使用 if 语句。 + React 组件是 JavaScript 函数。想要有条件地显示一些内容吗?使用{' '} + if 语句。
- 想要展示一个列表?尝试使用数组的 map() 方法。学习 React 就是学习编程。 + 想要展示一个列表?尝试使用数组的 map() 方法。学习 + React 就是学习编程。
@@ -206,8 +210,8 @@ export function HomeContent() {
- 你也可以不用 React 去构建整个页面,而只是将 React 添加到现有的 HTML - 页面中,在任何地方呈现交互式的 React 组件。 + 你也可以不用 React 去构建整个页面,而只是将 React 添加到现有的 + HTML 页面中,在任何地方呈现交互式的 React 组件。
React 是一个库。它允许你将组件放在一起,但不关注路由和数据获取。要使用 - React 构建整个应用程序,我们建议使用像 Next.js 或 Remix 这样的全栈 React + React 构建整个应用程序,我们建议使用像{' '} + Next.js 或{' '} + Remix 这样的全栈 React 框架。
@@ -278,9 +284,9 @@ export function HomeContent() {

人们期望网页加载速度更快。在服务器上,React 可以让你在获取数据的同时开始流式传输 HTML,在任何 - JavaScript 代码加载之前逐步填充剩余内容。在客户端,即使是在渲染过程中,React - 可以使用标准的 Web API 使 UI - 能够快速响应。 + JavaScript + 代码加载之前逐步填充剩余内容。在客户端,即使是在渲染过程中,React + 可以使用标准的 Web API 使 UI 能够快速响应。

@@ -364,10 +370,13 @@ export function HomeContent() { 人们希望原生应用程序样式和体验都符合对应的平台。 React Native - 和 Expo 让你可以使用 React 构建 Android、iOS - 等应用程序。它们的样式和体验都和原生应用程序一样,因为它们的用户界面是真正的原生用户界面。这不是一个 Web - 视图——你的 React 组件由平台提供的真实 Android 或 iOS - 视图来渲染。 + {' '} + 和{' '} + Expo{' '} + 让你可以使用 React 构建 Android、iOS + 等应用程序。它们的样式和体验都和原生应用程序一样,因为它们的用户界面是真正的原生用户界面。这不是一个 + Web 视图——你的 React 组件由平台提供的真实 Android 或 + iOS 视图来渲染。

From b5c512d04e382a92fb3671615f75c41c7f4e8a0f Mon Sep 17 00:00:00 2001 From: Xavi Lee Date: Tue, 21 Mar 2023 08:55:49 +0800 Subject: [PATCH 4/8] Update src/components/Layout/HomeContent.js [skip ci] --- src/components/Layout/HomeContent.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Layout/HomeContent.js b/src/components/Layout/HomeContent.js index 3e33cc566d..4edac9874f 100644 --- a/src/components/Layout/HomeContent.js +++ b/src/components/Layout/HomeContent.js @@ -411,7 +411,7 @@ export function HomeContent() {
React 团队始终在研究如何改进 - React。一些研究需要数年才能得到回报。 React + React。一些研究需要数年才能得到回报。React 对将研究想法转化为生产具有高标准要求,只有经过证明的方法才能成为 React 的一部分。 From 1bd7da753fa850492c8456ea3b1bf027fc839dea Mon Sep 17 00:00:00 2001 From: Xavi Lee Date: Tue, 21 Mar 2023 10:56:53 +0800 Subject: [PATCH 5/8] update --- src/components/Layout/Footer.tsx | 38 ++++++++++++------------- src/components/Layout/HomeContent.js | 6 ++-- src/components/Layout/TopNav/TopNav.tsx | 16 +++++------ 3 files changed, 30 insertions(+), 30 deletions(-) diff --git a/src/components/Layout/Footer.tsx b/src/components/Layout/Footer.tsx index 677899eecd..34ec4907de 100644 --- a/src/components/Layout/Footer.tsx +++ b/src/components/Layout/Footer.tsx @@ -286,50 +286,50 @@ export function Footer() {
- Learn React + 学习 React - Quick Start - Installation + 快速入门 + 安装 - Describing the UI + 描述 UI - Adding Interactivity + 添加交互 - Managing State - Escape Hatches + 状态管理 + 应急方案
- API Reference + API 参考 - React APIs - React DOM APIs + React API + React DOM API
- Community + 社区 - Code of Conduct + 行为准则 - Meet the Team + 团队 - Docs Contributors + 文档贡献者 - Acknowledgements + 鸣谢
- More - Blog + 了解更多 + 博客 React Native - Privacy + 隐私政策 - Terms + 条款
- API 参考文档 + API 参考
@@ -246,7 +246,7 @@ export function HomeContent() {
React - 也是一种架构。实现它的框架可以从运行时甚至构建期间的异步组件中获取数据,或从文件或数据库读取数据,并将其传递给交互式组件。 + 也是一种架构。实现它的框架可以在服务端甚至是构建阶段使用异步组件来获取数据,也可以从文件或数据库读取数据,并将其传递给交互式组件。

- 人们希望原生应用程序样式和体验都符合对应的平台。 + 人们希望原生应用程序都有和自己使用的平台相一致的体验。 React Native {' '} diff --git a/src/components/Layout/TopNav/TopNav.tsx b/src/components/Layout/TopNav/TopNav.tsx index 663801fd1c..7c31723aa3 100644 --- a/src/components/Layout/TopNav/TopNav.tsx +++ b/src/components/Layout/TopNav/TopNav.tsx @@ -231,18 +231,18 @@ export default function TopNav({

- Learn + 教程 - Reference + 参考 - Community + 社区 - Blog + 博客
@@ -304,20 +304,20 @@ export default function TopNav({
- Learn + 教程 - Reference + 参考 - Community + 社区 - Blog + 博客
Date: Tue, 21 Mar 2023 11:08:15 +0800 Subject: [PATCH 6/8] fix ci --- src/components/Layout/Footer.tsx | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/src/components/Layout/Footer.tsx b/src/components/Layout/Footer.tsx index 34ec4907de..c89b0e3888 100644 --- a/src/components/Layout/Footer.tsx +++ b/src/components/Layout/Footer.tsx @@ -290,12 +290,8 @@ export function Footer() { 快速入门 安装 - - 描述 UI - - - 添加交互 - + 描述 UI + 添加交互 状态管理 应急方案
@@ -317,9 +313,7 @@ export function Footer() { 文档贡献者 - - 鸣谢 - + 鸣谢
了解更多 From 1192f002c5f098b43694676ee2a67c9a9d16172b Mon Sep 17 00:00:00 2001 From: Yucohny <79147654+Yucohny@users.noreply.github.com> Date: Tue, 21 Mar 2023 15:38:34 +0800 Subject: [PATCH 7/8] Update src/components/Layout/HomeContent.js Co-authored-by: QiChang Li --- src/components/Layout/HomeContent.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Layout/HomeContent.js b/src/components/Layout/HomeContent.js index 95b7a904f4..eba14a5e45 100644 --- a/src/components/Layout/HomeContent.js +++ b/src/components/Layout/HomeContent.js @@ -131,7 +131,7 @@ export function HomeContent() { React

- 一个构建 Web 和原生用户界面的库 + 用于构建 Web 和原生交互界面的库

Date: Tue, 21 Mar 2023 17:35:28 +0800 Subject: [PATCH 8/8] Update src/components/Layout/HomeContent.js Co-authored-by: Yucohny <79147654+Yucohny@users.noreply.github.com> --- src/components/Layout/HomeContent.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Layout/HomeContent.js b/src/components/Layout/HomeContent.js index eba14a5e45..d510204719 100644 --- a/src/components/Layout/HomeContent.js +++ b/src/components/Layout/HomeContent.js @@ -364,7 +364,7 @@ export function HomeContent() {

- 真正的原生 + 开发真正的原生应用

人们希望原生应用程序都有和自己使用的平台相一致的体验。