Skip to content
Snippets Groups Projects
get-query-people.ts 268 B
Newer Older
Yusuf Akgül's avatar
Yusuf Akgül committed
import axios from "axios"

export const getQueryPeople = async (query: string | undefined) => {
    try {
        const { data } = await axios.get(`/api/search/people?query=${query}`)

        return data
    } catch (error: any) {
        return error.Message
    }
}