在 React 中使用 TypeScript 创建组件
import React, { FC } from 'react';
import { View, Text } from 'react-native';
import styles from './styles';
interface Props {
text: string;
}
const MyComponent: FC<Props> = ({ text }) => {
return (
<View style={styles.container}>
<Text>{text}</Text>
</View>
);
};
export default MyComponent;
这段代码展示了如何在React Native项目中使用TypeScript创建一个简单的组件MyComponent
。该组件接收一个字符串类型的text
属性,并在View
组件中显示这个文本。使用TypeScript的优点是可以在编译时检测到类型错误,从而提高代码质量和可维护性。
评论已关闭