mirror of
https://github.com/status-im/react-native.git
synced 2025-02-14 02:17:14 +00:00
Summary: Will create new issue to add more information to the `Components` section of the Tutorial since that was gutted by this change. Fixes #8156 Closes https://github.com/facebook/react-native/pull/8256 Differential Revision: D3459601 Pulled By: JoelMarcey fbshipit-source-id: 4038afc463bffcf8efda36d29bc7c443bbc8f4bd
21 lines
858 B
Markdown
21 lines
858 B
Markdown
---
|
|
id: basics-components
|
|
title: Components
|
|
layout: docs
|
|
category: Basics
|
|
permalink: docs/basics-components.html
|
|
next: basics-component-text
|
|
---
|
|
|
|
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.
|
|
|
|
## Core Components.
|
|
|
|
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](/react-native/docs/tutorial-component-text.html)
|
|
- [Image](/react-native/docs/tutorial-component-image.html)
|
|
- [View](/react-native/docs/tutorial-component-view.html)
|
|
- [TextInput](/react-native/docs/tutorial-component-textinput.html)
|
|
- [ListView](/react-native/docs/tutorial-component-listview.html)
|