From dac5c9e3284b85113f1e35ad086f211d98105c7c Mon Sep 17 00:00:00 2001 From: "waliang.wang" Date: Fri, 14 Jul 2017 11:41:14 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=A0=E9=99=A4=E5=A4=9A=E4=BD=99action?= =?UTF-8?q?=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- client/actions/interface.js | 33 --------------------------------- 1 file changed, 33 deletions(-) delete mode 100644 client/actions/interface.js diff --git a/client/actions/interface.js b/client/actions/interface.js deleted file mode 100644 index a251066b..00000000 --- a/client/actions/interface.js +++ /dev/null @@ -1,33 +0,0 @@ -import { - FETCH_INTERFACE_DATA -} from '../constants/action-types.js'; - -export function fetchAuditIcons () { - const data = [{ - key: '1', - name: 'John Brown', - age: 32, - address: 'New York No. 1 Lake Park', - date: '2015-11-11 13:00:15', - features: '3' - }, { - key: '2', - name: 'Jim Green', - age: 42, - address: 'London No. 1 Lake Park', - date: '2015-11-11 13:00:15', - features: '3' - }, { - key: '3', - name: 'Joe Black', - age: 32, - address: 'Sidney No. 1 Lake Park', - date: '2015-11-11 13:00:15', - features: '3' - }] - - return { - type: FETCH_INTERFACE_DATA, - payload: data - }; -}