Skip to content

Commit

Permalink
add preloader to api list
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanzusko committed Sep 13, 2017
1 parent ede913a commit 6c81bc4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/modules/pages/ApiListPage/ApiList.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,11 @@ import {
} from 'react-router-dom';

import block from '../../../helpers/bem-cn';

import Table from '../../Layout/Table/Table';
import PaginatedList from '../../PaginatedList/PaginatedList';
import Icon from '../../Icon/Icon';
import Preloader from '../../Preloader/Preloader';

import '../../Layout/Table/Table.css';

Expand Down Expand Up @@ -110,7 +112,7 @@ class ApiList extends PureComponent {
);
}

return <div>Loading...</div>;
return <Preloader />;
}
}

Expand Down

0 comments on commit 6c81bc4

Please sign in to comment.