Open links in new tab
  1. React – A JavaScript library for building user interfaces

    React makes it painless to create interactive UIs. Design simple views for each state in your application, and React will efficiently update and render just the right components when your data changes. …

  2. reactjs.org - React – 用來實作使用者介面的 JavaScript 函式庫

    React 讓實作互動式的使用者介面變得一點也不痛苦。你只要在你的應用程式中為每個情境設計一個簡單的 view,React 就會在資料變更時有效率的自動更新並 render 有異動的元件。 宣告式的 view 讓你 …

  3. React – Una libreria JavaScript per creare interfacce utente

    React rende la creazione di UI interattive facile e indolore. Progetta interfacce per ogni stato della tua applicazione. Ad ogni cambio di stato React aggiornerà efficientemente solamente le parti della UI …

  4. 學習指南:React 介紹 - reactjs.org

    你不需要有任何 React 的基礎知識就能使用這份學習指南。 在我們開始這份學習指南之前 在這份學習指南中,我們會練習做一個小遊戲。 也許你會很想跳過這份指南,因為你不是遊戲開發者 — 但請試著 …

  5. React – JavaScript könyvtár felhasználói felületek létrehozásához

    A React segítségével könnyen készíthetsz interaktív felhasználói felületeket. Tervezz egyszerű nézeteket az applikáció minden egyes állapotához, és a React gondoskodik arról, hogy …

  6. React - Une bibliothèque JavaScript pour créer des interfaces ...

    Grâce à React, il est facile de créer des interfaces utilisateurs interactives. Définissez des vues simples pour chaque état de votre application, et lorsque vos données changeront, React mettra à jour, de …

  7. Lists and Keys – React - reactjs.org

    First, let’s review how you transform lists in JavaScript. Given the code below, we use the map() function to take an array of numbers and double their values. We assign the new array returned by map() to …

  8. Components and Props – React - reactjs.org

    This function is a valid React component because it accepts a single “props” (which stands for properties) object argument with data and returns a React element. We call such components …

  9. チュートリアル:React の導入 - reactjs.org

    このチュートリアルは React の事前知識ゼロでも読み進められます。 チュートリアルを始める前に このチュートリアルでは小さなゲームを作成します。 自分はゲームを作りたいのではないから、と …

  10. Introducing Hooks – React - reactjs.org

    Hooks are a new addition in React 16.8. They let you use state and other React features without writing a class.