Rayron Victor 7 лет назад
Родитель
Сommit
8d25c2e65f
2 измененных файлов с 4 добавлено и 2 удалено
  1. 2 1
      src/components/Charts/Pie/index.js
  2. 2 1
      src/components/Charts/Radar/index.js

+ 2 - 1
src/components/Charts/Pie/index.js

@@ -11,7 +11,6 @@ import autoHeight from '../autoHeight';
 import styles from './index.less';
 
 /* eslint react/no-danger:0 */
-export default
 @autoHeight()
 class Pie extends Component {
   state = {
@@ -268,3 +267,5 @@ class Pie extends Component {
     );
   }
 }
+
+export default Pie;

+ 2 - 1
src/components/Charts/Radar/index.js

@@ -5,7 +5,6 @@ import autoHeight from '../autoHeight';
 import styles from './index.less';
 
 /* eslint react/no-danger:0 */
-export default
 @autoHeight()
 class Radar extends Component {
   state = {
@@ -181,3 +180,5 @@ class Radar extends Component {
     );
   }
 }
+
+export default Radar;