- avoid using any or undefined types in the code - fix ui issues for api home screen - update naming convensions - remove unwanted code - use color variables
8 lines
195 B
TypeScript
8 lines
195 B
TypeScript
import { ReduxActionTypes } from "constants/ReduxActionConstants";
|
|
|
|
export const fetchImportedCollections = () => {
|
|
return {
|
|
type: ReduxActionTypes.FETCH_IMPORTED_COLLECTIONS_INIT,
|
|
};
|
|
};
|