Basic Component

suggest change
import React, { Component } from 'react'
import { View, Text, AppRegistry } from 'react-native'

class Example extends Component {
  render () {
    return (
      <View> 
        <Text> I'm a basic Component </Text>
      </View>
    )
  }
}

AppRegistry.registerComponent('Example', () => Example)

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:


Components:
*Basic Component

Table Of Contents