# React native First One

In React Native for writing text we have to use Text tag ex:&lt;Text&gt;HELLO&lt;/TEXT&gt;

Like all other tags, we have to use

import React from 'react'; import { View, Text, Button } from 'react-native'; const App = () =&gt; ( &lt;View&gt; &lt;Text style={{ margin: 64 }}&gt; First Video Done &lt;/Text&gt; &lt;Button title="Press"/&gt; &lt;/View&gt; ); export default App;
