copy and paste this google map to your website or blog!
Press copy button and paste into your blog or website.
(Please switch to 'HTML' mode when posting into your blog. Examples: WordPress Example, Blogger Example)
Tutorial: Tic-Tac-Toe – React The goal of this tutorial is to help you understand React and its syntax We recommend that you check out the tic-tac-toe game above before continuing with the tutorial One of the features that you’ll notice is that there is a numbered list to the right of the game’s board
Your First Component – React React lets you combine your markup, CSS, and JavaScript into custom “components”, reusable UI elements for your app The table of contents code you saw above could be turned into a <TableOfContents > component you could render on every page
React React is the library for web and native user interfaces Build user interfaces out of individual pieces called components written in JavaScript React is designed to let you seamlessly combine components written by independent people, teams, and organizations
Describing the UI – React React is a JavaScript library for rendering user interfaces (UI) UI is built from small units like buttons, text, and images React lets you combine them into reusable, nestable components From web sites to phone apps, everything on the screen can be broken down into components In this chapter, you’ll learn to create, customize, and conditionally display React components
Inicio rápido – React Inicio rápido ¡Bienvenido a la documentación de React! Esta página te dará una introducción a un 80% de los conceptos de React que usarás a diario
Installation – React Installation 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
Início rápido – React Criando e aninhando componentes As aplicações React são compostas por componentes Um componente é uma parte da IU (interface do usuário) que possui sua própria lógica e aparência Um componente pode ser tão pequeno quanto um botão, ou tão grande quanto uma página inteira Componentes do React são funções JavaScript que retornam marcação (markup):
Thinking in React React can change how you think about the designs you look at and the apps you build When you build a user interface with React, you will first break it apart into pieces called components Then, you will describe the different visual states for each of your components Finally, you will connect your components together so that the data flows through them In this tutorial, we’ll guide you