私はこの反応の生態系ではかなり新しいですが、それはコンポーネントであり、どのように使用して作成するものに、これまでかなり明確だ:私はちょうどReact(ネイティブ)のコンポーネントをなぜ延長するべきですか?
を使用するいくつかの例を見てきましたがexport default class NotificationsScreen extends Component {
render() {
return(<View></View>);
}
}
を
const MySmallComponent = (props) => <View></View>
そして、アプリは同じように正常に動作するようです。..
Component
を拡張することの利点は何ですか?
[React functional stateless component、PureComponent、Component]の可能な複製。どのような違いがありますか?何を使うべきですか?](https://stackoverflow.com/questions/40703675/react-functional-stateless-component-purecomponent-component-what-are-the-dif) – bennygenel