0

与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() {}

但没有成功

4

1 回答 1

1

使用https://facebook.github.io/react/docs/reusable-components.html#stateless-functions中的文档,您的代码示例将转换为:

import React from 'react';
import TopBar from './topBar';
import Content from './content';

function App (props) {
  return (
    <div className="app">
      <TopBar />
      <Content />
    </div>
  );
}

export default App;

请注意,此更新的代码示例将破坏其他一些 airbnb eslinting 规则,但这些规则应该是不言自明的。只需将此作为模板发布即可。关于这个主题的文档非常直接,因此请确保您对这些文档进行了很好的审查。

于 2016-06-13T17:42:12.323 回答