Commit 7fde4e74 authored by 陈帅's avatar 陈帅

fix #2122 fix lint error

parent 08a59602
......@@ -51,7 +51,6 @@ Shape.registerShape('point', 'pointer', {
},
});
export default
@autoHeight()
class Gauge extends React.Component {
render() {
......@@ -164,3 +163,5 @@ class Gauge extends React.Component {
);
}
}
export default Gauge;
......@@ -3,7 +3,6 @@ import { Chart, Axis, Tooltip, Geom } from 'bizcharts';
import autoHeight from '../autoHeight';
import styles from '../index.less';
export default
@autoHeight()
class MiniArea extends React.PureComponent {
render() {
......@@ -105,3 +104,5 @@ class MiniArea extends React.PureComponent {
);
}
}
export default MiniArea;
......@@ -3,7 +3,6 @@ import { Chart, Tooltip, Geom } from 'bizcharts';
import autoHeight from '../autoHeight';
import styles from '../index.less';
export default
@autoHeight()
class MiniBar extends React.Component {
render() {
......@@ -49,3 +48,4 @@ class MiniBar extends React.Component {
);
}
}
export default MiniBar;
......@@ -5,7 +5,6 @@ import Slider from 'bizcharts-plugin-slider';
import autoHeight from '../autoHeight';
import styles from './index.less';
export default
@autoHeight()
class TimelineChart extends React.Component {
render() {
......@@ -121,3 +120,5 @@ class TimelineChart extends React.Component {
);
}
}
export default TimelineChart;
......@@ -57,7 +57,6 @@ const tableData = [
},
];
export default
@connect(({ loading }) => ({
submitting: loading.effects['form/submitAdvancedForm'],
}))
......@@ -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