Skip to content

Commit

Permalink
Fix order of imports.
Browse files Browse the repository at this point in the history
  • Loading branch information
asvarcas committed May 22, 2020
1 parent aba5d95 commit e16170d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/ra-core/src/controller/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ import CreateController from './CreateController';
import EditController from './EditController';
import ListController from './ListController';
import ShowController from './ShowController';
import useRecordSelection from './useRecordSelection';
import useVersion from './useVersion';
import useExpanded from './useExpanded';
import {
getListControllerProps,
sanitizeListRestProps,
} from './useListController';
import useRecordSelection from './useRecordSelection';
import useVersion from './useVersion';
import useExpanded from './useExpanded';
import useFilterState from './useFilterState';
import useSortState, { SortProps } from './useSortState';
import usePaginationState, { PaginationProps } from './usePaginationState';
Expand Down

0 comments on commit e16170d

Please sign in to comment.