logo
  • 教程列表
  • SO官方文档
  • 组件
    • 基本组件
    • 有状态组件
    • 无状态组件
  1. StackOverflow 文档
  2. react-native 教程
  3. 组件
  4. 基本组件

基本组件

Created: November-22, 2018

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)
  • 有状态组件
  • 组件

Copyright © 2018. All right reserved

tastones.com 备案号:鲁ICP备18045372号-1

  • 关于我们
  • 免责声明