yapi/client/actions/interface.js

33 lines
642 B
JavaScript
Raw Normal View History

2017-07-11 19:12:13 +08:00
import {
FETCH_INTERFACE_DATA,
2017-07-12 11:57:28 +08:00
} from '../constants/action-types.js';
2017-07-11 19:12:13 +08:00
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,
};
}