1import React,{Component} from 'react';
2import {View,Text} from 'react-native';
3export default class filename extends Component
4{
5render()
6 {
7 return(
8 <View>
9 <Text>Welcome to React Native !!!</Text>
10 </View>
11
12 );
13 }
14}