diff --git a/src/components/DescriptionList/DescriptionList.js b/src/components/DescriptionList/DescriptionList.js
index 128b0d31b423be0d05b4303ab9b13d85957bbba2..73ba989c0e06b4e4ef91c906a79b7f1f48e9ef10 100644
--- a/src/components/DescriptionList/DescriptionList.js
+++ b/src/components/DescriptionList/DescriptionList.js
@@ -3,7 +3,7 @@ import classNames from 'classnames';
import { Row } from 'antd';
import styles from './index.less';
-export default ({
+const DescriptionList = ({
className,
title,
col = 3,
@@ -27,3 +27,5 @@ export default ({
);
};
+
+export default DescriptionList;
diff --git a/src/components/Exception/index.js b/src/components/Exception/index.js
index 4fc813fbd96e04d8ebd2baf19f194f04888d4290..14703e34275e6f32bd87b8c958f2150d48ea848c 100644
--- a/src/components/Exception/index.js
+++ b/src/components/Exception/index.js
@@ -4,7 +4,7 @@ import { Button } from 'antd';
import config from './typeConfig';
import styles from './index.less';
-export default ({ className, linkElement = 'a', type, title, desc, img, actions, ...rest }) => {
+const Exception = ({ className, linkElement = 'a', type, title, desc, img, actions, ...rest }) => {
const pageType = type in config ? type : '404';
const clsString = classNames(styles.exception, className);
return (
@@ -33,3 +33,5 @@ export default ({ className, linkElement = 'a', type, title, desc, img, actions,
);
};
+
+export default Exception;
diff --git a/src/components/GlobalFooter/index.js b/src/components/GlobalFooter/index.js
index 837fe6f9179a7c89858f771e3f0b67bc5b417874..f557213191cdd2fe7fa6dc6d9dbca8a7311ae837 100644
--- a/src/components/GlobalFooter/index.js
+++ b/src/components/GlobalFooter/index.js
@@ -2,7 +2,7 @@ import React from 'react';
import classNames from 'classnames';
import styles from './index.less';
-export default ({ className, links, copyright }) => {
+const GlobalFooter = ({ className, links, copyright }) => {
const clsString = classNames(styles.globalFooter, className);
return (
@@ -19,3 +19,5 @@ export default ({ className, links, copyright }) => {
);
};
+
+export default GlobalFooter;
diff --git a/src/components/Login/LoginSubmit.js b/src/components/Login/LoginSubmit.js
index 8770a97386e5edf526be071e3d863c76c4aed421..4aebabf89a98a530292ba87534620e9ded8f88e7 100644
--- a/src/components/Login/LoginSubmit.js
+++ b/src/components/Login/LoginSubmit.js
@@ -5,7 +5,7 @@ import styles from './index.less';
const FormItem = Form.Item;
-export default ({ className, ...rest }) => {
+const LoginSubmit = ({ className, ...rest }) => {
const clsString = classNames(styles.submit, className);
return (
@@ -13,3 +13,5 @@ export default ({ className, ...rest }) => {
);
};
+
+export default LoginSubmit;
diff --git a/src/components/NumberInfo/index.js b/src/components/NumberInfo/index.js
index afe914a1da783f887d26292df48ed793cd6883cc..cf25d6a04e71f529c19680c6a99c5a31b927ee84 100644
--- a/src/components/NumberInfo/index.js
+++ b/src/components/NumberInfo/index.js
@@ -3,7 +3,7 @@ import { Icon } from 'antd';
import classNames from 'classnames';
import styles from './index.less';
-export default ({ theme, title, subTitle, total, subTotal, status, suffix, gap, ...rest }) => (
+const NumberInfo = ({ theme, title, subTitle, total, subTotal, status, suffix, gap, ...rest }) => (
);
+
+export default NumberInfo;
diff --git a/src/components/SiderMenu/index.js b/src/components/SiderMenu/index.js
index 640d6ba5cedbe84ab422fc462a3fc7247e304ff0..a0dca9789be519d0021cc8390b38bfd2dc1db602 100644
--- a/src/components/SiderMenu/index.js
+++ b/src/components/SiderMenu/index.js
@@ -3,7 +3,7 @@ import React from 'react';
import DrawerMenu from 'rc-drawer-menu';
import SiderMenu from './SiderMenu';
-export default props =>
+const SiderMenuWrapper = props =>
props.isMobile ? (
) : (
);
+
+export default SiderMenuWrapper;
diff --git a/src/components/StandardFormRow/index.js b/src/components/StandardFormRow/index.js
index ec8ae1dce994db20d0c8733fbfae6d5074cd98af..8cb0e444e6d488ae4cdfeceb8eb94ee4adbb9248 100644
--- a/src/components/StandardFormRow/index.js
+++ b/src/components/StandardFormRow/index.js
@@ -2,7 +2,7 @@ import React from 'react';
import classNames from 'classnames';
import styles from './index.less';
-export default ({ title, children, last, block, grid, ...rest }) => {
+const StandardFormRow = ({ title, children, last, block, grid, ...rest }) => {
const cls = classNames(styles.standardFormRow, {
[styles.standardFormRowBlock]: block,
[styles.standardFormRowLast]: last,
@@ -20,3 +20,5 @@ export default ({ title, children, last, block, grid, ...rest }) => {
);
};
+
+export default StandardFormRow;