wip - pf4 data list and pagination

This commit is contained in:
Jake McDermott
2018-10-15 12:20:12 -04:00
parent 546d5d5587
commit e3a5f32b57
17 changed files with 1038 additions and 84 deletions

View File

@@ -44,7 +44,7 @@ class APIClient {
await this.http.post(endpoints.API_LOGIN, data, { headers });
}
get = (endpoint) => this.http.get(endpoint);
get = (endpoint, params = {}) => this.http.get(endpoint, { params });
}
export default new APIClient();