You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
React has been designed from the start for gradual adoption. You can use as little or as much React as you need. Whether you want to get a taste of React, add some interactivity to an HTML page, or start a complex React-powered app, this section will help you get started.
7
+
React 從一開始就被設計成可以逐步採用。你可以根據自己的需要使用更多或更少的 React。不論你想要嘗試 React、在 HTML 頁面中增加一些互動功能,或是開始一個複雜的 React 應用程式,本章節將幫助你入門。
8
8
9
9
</Intro>
10
10
11
11
<YouWillLearnisChapter={true}>
12
12
13
-
*[How to start a new React project](/learn/start-a-new-react-project)
14
-
*[How to add React to an existing project](/learn/add-react-to-an-existing-project)
15
-
*[How to set up your editor](/learn/editor-setup)
16
-
*[How to install React Developer Tools](/learn/react-developer-tools)
You don't need to install anything to play with React. Try editing this sandbox!
22
+
你不需要安裝任何東西來嘗試 React。試試看編輯這個 sandbox!
23
23
24
24
<Sandpack>
25
25
@@ -35,23 +35,22 @@ export default function App() {
35
35
36
36
</Sandpack>
37
37
38
-
You can edit it directly or open it in a new tab by pressing the "Fork" button in the upper right corner.
38
+
你可以直接編輯它,或按右上角的「Fork」按鈕在新的頁面中打開它。
39
39
40
-
Most pages in the React documentation contain sandboxes like this. Outside of the React documentation, there are many online sandboxes that support React: for example,[CodeSandbox](https://codesandbox.io/s/new), [StackBlitz](https://stackblitz.com/fork/react), or[CodePen.](https://codepen.io/pen?&editors=0010&layout=left&prefill_data_id=3f4569d1-1b11-4bce-bd46-89090eed5ddb)
To try React locally on your computer, [download this HTML page.](https://gist.githubusercontent.com/gaearon/0275b1e1518599bbeafcde4722e79ed1/raw/db72dcbf3384ee1708c4a07d3be79860db04bff0/example.html)Open it in your editor and in your browser!
44
+
在你的電腦本機端嘗試 React,[下載這個 HTML 頁面。](https://gist.githubusercontent.com/gaearon/0275b1e1518599bbeafcde4722e79ed1/raw/db72dcbf3384ee1708c4a07d3be79860db04bff0/example.html)在你的編輯器和瀏覽器打開它!
45
45
46
-
## Start a new React project {/*start-a-new-react-project*/}
0 commit comments