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反應給人
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