Last updated 1 year ago
useAxios() simplifies API calls in a React component. It uses underlying Axios client, which is preconfigured to work with MagicJS making it easier to interact with web services.
useAxios()
Here's an example:
import { useAxios } from "@magicjs.dev/frontend" const client = useAxios() React.useEffect(() => { client.get("https://testApi.com").then((res) => { console.log(res) }) }, [])
.