openreplay/frontend/app/duck/funcTools/list/actions.js
2021-05-01 15:12:01 +05:30

13 lines
No EOL
219 B
JavaScript

import {
editInListType,
} from './types';
export const createEditInList = (name) => {
const type = editInListType(name);
return item => ({
type,
item,
});
};
export { createFetchList } from '../crud';