我在這個生態系統的反應很新,但是,很明顯,到目前爲止組件上的是什麼,以及如何使用,以創建一個:爲什麼你應該在React(Native)中擴展組件?
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