1

我有一个 react-native android 应用程序。我在 index.android.js 中的组件是无状态的,所以 eslint 抛出错误“组件应该写成纯函数”。如果我将组件作为纯函数,我如何注册应用程序或实例化应该如何?

4

1 回答 1

5

您甚至可以使用“纯功能”注册应用程序这种代码可以工作

 const App = () => {
  return (
    <MainApp />
  );
};

AppRegistry.registerComponent('myapp', () => App);

可以删除“return”部分以获得更清晰的代码:

const App = () => (
    <MainApp />
);


AppRegistry.registerComponent('myapp', () => App);
于 2017-02-24T07:00:13.297 回答