616 B
616 B
id | title | layout | category | permalink | next |
---|---|---|---|---|---|
basics-component-text | Text | docs | Basics | docs/basics-component-text.html | basics-component-image |
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 = () => {
return (
<Text>Hello World!</Text>
);
}
// App registration and rendering
AppRegistry.registerComponent('MyApp', () => App);