eslinting с Airbnbeslint реагирует с Airbnb
import React from 'react';
import TopBar from './topBar';
import Content from './content';
class App extends React.Component {
render() {
return (
<div className="app">
<TopBar />
<Content />
</div>
);
}
}
export default App;
дает ошибку
5:1 error Component should be written as a pure function react/prefer-stateless-function
Я Пытался
function render(){}
и
render: function() {}
но не удалось
Пожалуйста, помогите мне
читать: https://facebook.github.io/react/docs/reusable-components.html#stateless-functions – azium