0
が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;
とeslintingと反応し、私は
function render(){}
と
render: function() {}
を試してみました
5:1 error Component should be written as a pure function react/prefer-stateless-function
エラーになります
しかし
を成功しませんでしたhttps://facebook.github.io/react/docs/reusable-components.html#stateless-functionsからドキュメントを使ってくれ
これを読んでください:https://facebook.github.io/react/docs/reusable-components.html#stateless-functions – azium