fix eslint

This commit is contained in:
afc163 2016-07-21 21:19:37 +08:00
parent a72d9ec381
commit 2a54161e51

View File

@ -17,7 +17,7 @@ Display a global loading indicator, which is dismissed by itself asynchronously.
import { message, Button } from 'antd';
const success = () => {
let hide = message.loading('Action in progress..', 0);
const hide = message.loading('Action in progress..', 0);
// Dismiss manually and asynchronously
setTimeout(hide, 2500);
};