File size: 173 Bytes
3206347 |
1 2 3 4 5 6 7 8 9 10 |
const actionSerializer = (action) => {
return {
name: action.name,
key: action.key,
description: action.description,
};
};
export default actionSerializer;
|