Если у компонента нет состояния (state
) или ссылок (refs
), используйте функции, а не классы.
function Listing({ hello }) {
return <div>{hello}</div>;
}
const Listing = ({ hello }) => (
<div>{hello}</div>
);
class Listing extends React.Component {
render() {
return <div>{this.props.hello}</div>;
}
}