本文主要是介绍eslint报错`react-redux` import should occur before import of `./style/index.module.less`,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
我们知道,在模块化开发中,关于引入类库或者组件的顺序问题是有共识的,一般是第三方类库在上方,本地文件在下方。但有时候没有注意到,eslint好强大库🤣,这都能给我发现。
import React, { useEffect, useRef, useState } from 'react';
// import axios from 'axios';
import styles from './style/index.module.less';
import history from '../../history';
import useLocale from '../../utils/useLocale';
import { useDispatch } from 'react-redux';
报错:
解决:
恢复正常
这篇关于eslint报错`react-redux` import should occur before import of `./style/index.module.less`的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!