export default function getUpdatedValues(keys, formData) { return keys.reduce((acc, key) => { acc[key] = formData[key]; return acc; }, {}); }