React Native 基础
React 的核心概念
定义函数式组件
import组件
要定义一个Cat
组件,第一步要使用 import 语句来引入React
以及React Native
的 Text 组件:
import React from 'react';
import { Text } from 'react-native';
定义函数作为组件
const CatApp = () => {};
要定义一个Cat
组件,第一步要使用 import 语句来引入React
以及React Native
的 Text 组件:
import React from 'react';
import { Text } from 'react-native';
const CatApp = () => {};