import fetchJson from 'helpers/fetchJson' export const changePassword = async (data) => ( await fetchJson('/api/password', { method: 'POST', headers: { 'Content-Type': 'plain/text; charset=utf-8' }, body: JSON.stringify(data) }) )