We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c232a6 commit a550484Copy full SHA for a550484
.eslintrc
@@ -5,8 +5,9 @@
5
"react/jsx-filename-extension": "off",
6
"import/no-extraneous-dependencies": "off",
7
"react/jsx-props-no-spreading": "off",
8
- "max-len":"off",
9
- "no-nested-ternary":"off"
+ "max-len": "off",
+ "no-nested-ternary": "off",
10
+ "import/prefer-default-export": "off"
11
},
12
"env": {
13
"browser": true,
src/index.js
@@ -1 +1 @@
1
-export * as LinkContainer from './LinkContainer';
+export { default as LinkContainer } from './LinkContainer';
0 commit comments