From b358600860a72dd6f07980cb58630c21c2d8a06c Mon Sep 17 00:00:00 2001 From: Website Deployment Script Date: Thu, 16 Jun 2016 16:40:21 +0000 Subject: [PATCH] Updated docs for next --- releases/next/docs/tutorial-core-components.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/releases/next/docs/tutorial-core-components.html b/releases/next/docs/tutorial-core-components.html index da67cfd9c46..539f09e5436 100644 --- a/releases/next/docs/tutorial-core-components.html +++ b/releases/next/docs/tutorial-core-components.html @@ -1,4 +1,4 @@ -Core Components – React Native | A framework for building native apps using React

Core Components #

Edit on GitHub

Components are the building blocks for a React Native application. A React Native user interface (UI) is specified by declaring components, possibly nested, and then those components are mapped to the native UI on the targeted platform.

React Native has a number of core components that are commonly used in applications, either on their own or combined to build new components.

Text #

The most basic component in React Native is the Text component. The Text component simply renders text.

This example displays the string "Hello" on the device.

import React from 'react'; +Core Components – React Native | A framework for building native apps using React

Core Components #

Edit on GitHub

Components are the building blocks for a React Native application. A React Native user interface (UI) is specified by declaring components, possibly nested, and then those components are mapped to the native UI on the targeted platform.

React Native has a number of core components that are commonly used in applications, either on their own or combined to build new components.

Text #

The most basic component in React Native is the Text component. The Text component simply renders text.

This example displays the string "Hello World!" on the device.

import React from 'react'; import { AppRegistry, Text } from 'react-native'; const App = () => {