I want to use async post-get request in useEffect hooks. Is this a optimize solition?
    useEffect(() => {
        await Axios.get("some url").then(async(res) => {
            console.log(res);
        }).catch(async(err) => {
            console.log(err)
        })
    }, [isFocused]) 
    