ตัวอย่างฟังก์ชันคอมโพเนนท์
MyProject.js
import React from 'react'; import { Button, Text, View, StyleSheet } from 'react-native'; export default function MyProject() { return ( <View style={{ width: '100%', height: '100%' }}> </View> ); }
ตัวอย่างคลาสคอมโพเนนท์
Tab.js
import React, { Component } from 'react'; import { View, Image, StyleSheet, Dimensions, Text, Button, TouchableOpacity } from 'react-native'; class Tab extends React.Component { constructor(props) { super(props); this.state = { visible:true } } render() { return ( <View style={{ width: '100%', height: '100%' }}> </View> ); } } export default Tab;