Commit 3df1c08f authored by ZHAO Jinxiang's avatar ZHAO Jinxiang Committed by ι™ˆεΈ…

add component's name

parent 48ad98c3
...@@ -3,7 +3,7 @@ import classNames from 'classnames'; ...@@ -3,7 +3,7 @@ import classNames from 'classnames';
import { Row } from 'antd'; import { Row } from 'antd';
import styles from './index.less'; import styles from './index.less';
export default ({ const DescriptionList = ({
className, className,
title, title,
col = 3, col = 3,
...@@ -27,3 +27,5 @@ export default ({ ...@@ -27,3 +27,5 @@ export default ({
</div> </div>
); );
}; };
export default DescriptionList;
...@@ -4,7 +4,7 @@ import { Button } from 'antd'; ...@@ -4,7 +4,7 @@ import { Button } from 'antd';
import config from './typeConfig'; import config from './typeConfig';
import styles from './index.less'; 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 pageType = type in config ? type : '404';
const clsString = classNames(styles.exception, className); const clsString = classNames(styles.exception, className);
return ( return (
...@@ -33,3 +33,5 @@ export default ({ className, linkElement = 'a', type, title, desc, img, actions, ...@@ -33,3 +33,5 @@ export default ({ className, linkElement = 'a', type, title, desc, img, actions,
</div> </div>
); );
}; };
export default Exception;
...@@ -2,7 +2,7 @@ import React from 'react'; ...@@ -2,7 +2,7 @@ import React from 'react';
import classNames from 'classnames'; import classNames from 'classnames';
import styles from './index.less'; import styles from './index.less';
export default ({ className, links, copyright }) => { const GlobalFooter = ({ className, links, copyright }) => {
const clsString = classNames(styles.globalFooter, className); const clsString = classNames(styles.globalFooter, className);
return ( return (
<div className={clsString}> <div className={clsString}>
...@@ -19,3 +19,5 @@ export default ({ className, links, copyright }) => { ...@@ -19,3 +19,5 @@ export default ({ className, links, copyright }) => {
</div> </div>
); );
}; };
export default GlobalFooter;
...@@ -5,7 +5,7 @@ import styles from './index.less'; ...@@ -5,7 +5,7 @@ import styles from './index.less';
const FormItem = Form.Item; const FormItem = Form.Item;
export default ({ className, ...rest }) => { const LoginSubmit = ({ className, ...rest }) => {
const clsString = classNames(styles.submit, className); const clsString = classNames(styles.submit, className);
return ( return (
<FormItem> <FormItem>
...@@ -13,3 +13,5 @@ export default ({ className, ...rest }) => { ...@@ -13,3 +13,5 @@ export default ({ className, ...rest }) => {
</FormItem> </FormItem>
); );
}; };
export default LoginSubmit;
...@@ -3,7 +3,7 @@ import { Icon } from 'antd'; ...@@ -3,7 +3,7 @@ import { Icon } from 'antd';
import classNames from 'classnames'; import classNames from 'classnames';
import styles from './index.less'; 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 }) => (
<div <div
className={classNames(styles.numberInfo, { className={classNames(styles.numberInfo, {
[styles[`numberInfo${theme}`]]: theme, [styles[`numberInfo${theme}`]]: theme,
...@@ -26,3 +26,5 @@ export default ({ theme, title, subTitle, total, subTotal, status, suffix, gap, ...@@ -26,3 +26,5 @@ export default ({ theme, title, subTitle, total, subTotal, status, suffix, gap,
</div> </div>
</div> </div>
); );
export default NumberInfo;
...@@ -3,7 +3,7 @@ import React from 'react'; ...@@ -3,7 +3,7 @@ import React from 'react';
import DrawerMenu from 'rc-drawer-menu'; import DrawerMenu from 'rc-drawer-menu';
import SiderMenu from './SiderMenu'; import SiderMenu from './SiderMenu';
export default props => const SiderMenuWrapper = props =>
props.isMobile ? ( props.isMobile ? (
<DrawerMenu <DrawerMenu
parent={null} parent={null}
...@@ -20,3 +20,5 @@ export default props => ...@@ -20,3 +20,5 @@ export default props =>
) : ( ) : (
<SiderMenu {...props} /> <SiderMenu {...props} />
); );
export default SiderMenuWrapper;
...@@ -2,7 +2,7 @@ import React from 'react'; ...@@ -2,7 +2,7 @@ import React from 'react';
import classNames from 'classnames'; import classNames from 'classnames';
import styles from './index.less'; 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, { const cls = classNames(styles.standardFormRow, {
[styles.standardFormRowBlock]: block, [styles.standardFormRowBlock]: block,
[styles.standardFormRowLast]: last, [styles.standardFormRowLast]: last,
...@@ -20,3 +20,5 @@ export default ({ title, children, last, block, grid, ...rest }) => { ...@@ -20,3 +20,5 @@ export default ({ title, children, last, block, grid, ...rest }) => {
</div> </div>
); );
}; };
export default StandardFormRow;
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