eslint报错解决方法

Component should be written as a pure functioneslint(react/prefer-stateless-function)

这个报错表示:应该用一个纯函数表示无状态的函数。

解决报错的方式有下面两种:

  • 1.切换为纯函数表达
  • 2.给class中的constructor添加state

'React' must be in scope when using JSXeslint(react/react-in-jsx-scope)

Cannot read property 'createElement' of undefined

这个报错表示,没有引入React,注意大小写。

解决方式:

    1. 代码添加 import React from 'react';

转载于:https://juejin.im/post/5ceb5890f265da1bc94ecbd7

你可能感兴趣的:(eslint报错解决方法)