import axios from 'axios'; export default async (id) => { const { data } = await axios.get(`Accounts/${id}/exists`); return data.exists; };