Commit 7fde4e74 authored by ι™ˆεΈ…'s avatar ι™ˆεΈ…

fix #2122 fix lint error

parent 08a59602
...@@ -51,7 +51,6 @@ Shape.registerShape('point', 'pointer', { ...@@ -51,7 +51,6 @@ Shape.registerShape('point', 'pointer', {
}, },
}); });
export default
@autoHeight() @autoHeight()
class Gauge extends React.Component { class Gauge extends React.Component {
render() { render() {
...@@ -164,3 +163,5 @@ class Gauge extends React.Component { ...@@ -164,3 +163,5 @@ class Gauge extends React.Component {
); );
} }
} }
export default Gauge;
...@@ -3,7 +3,6 @@ import { Chart, Axis, Tooltip, Geom } from 'bizcharts'; ...@@ -3,7 +3,6 @@ import { Chart, Axis, Tooltip, Geom } from 'bizcharts';
import autoHeight from '../autoHeight'; import autoHeight from '../autoHeight';
import styles from '../index.less'; import styles from '../index.less';
export default
@autoHeight() @autoHeight()
class MiniArea extends React.PureComponent { class MiniArea extends React.PureComponent {
render() { render() {
...@@ -105,3 +104,5 @@ class MiniArea extends React.PureComponent { ...@@ -105,3 +104,5 @@ class MiniArea extends React.PureComponent {
); );
} }
} }
export default MiniArea;
...@@ -3,7 +3,6 @@ import { Chart, Tooltip, Geom } from 'bizcharts'; ...@@ -3,7 +3,6 @@ import { Chart, Tooltip, Geom } from 'bizcharts';
import autoHeight from '../autoHeight'; import autoHeight from '../autoHeight';
import styles from '../index.less'; import styles from '../index.less';
export default
@autoHeight() @autoHeight()
class MiniBar extends React.Component { class MiniBar extends React.Component {
render() { render() {
...@@ -49,3 +48,4 @@ class MiniBar extends React.Component { ...@@ -49,3 +48,4 @@ class MiniBar extends React.Component {
); );
} }
} }
export default MiniBar;
...@@ -5,7 +5,6 @@ import Slider from 'bizcharts-plugin-slider'; ...@@ -5,7 +5,6 @@ import Slider from 'bizcharts-plugin-slider';
import autoHeight from '../autoHeight'; import autoHeight from '../autoHeight';
import styles from './index.less'; import styles from './index.less';
export default
@autoHeight() @autoHeight()
class TimelineChart extends React.Component { class TimelineChart extends React.Component {
render() { render() {
...@@ -121,3 +120,5 @@ class TimelineChart extends React.Component { ...@@ -121,3 +120,5 @@ class TimelineChart extends React.Component {
); );
} }
} }
export default TimelineChart;
...@@ -57,7 +57,6 @@ const tableData = [ ...@@ -57,7 +57,6 @@ const tableData = [
}, },
]; ];
export default
@connect(({ loading }) => ({ @connect(({ loading }) => ({
submitting: loading.effects['form/submitAdvancedForm'], submitting: loading.effects['form/submitAdvancedForm'],
})) }))
...@@ -308,3 +307,5 @@ class AdvancedForm extends PureComponent { ...@@ -308,3 +307,5 @@ class AdvancedForm extends PureComponent {
); );
} }
} }
export default AdvancedForm;
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment