PromucFlow_constructor/app/client/src/actions/collectionAction.ts

8 lines
195 B
TypeScript
Raw Normal View History

import { ReduxActionTypes } from "constants/ReduxActionConstants";
export const fetchImportedCollections = () => {
return {
type: ReduxActionTypes.FETCH_IMPORTED_COLLECTIONS_INIT,
};
};