Explore the full list of modules, functions, and utilities available in the ebosma framework.
📘 View Full DocumentationuseFetch
Simplifies data fetching with automatic caching, loading states, and error handling.
View Hookdebounce
Creates a debounced function that delays invoking a callback until after a timeout.
View Utility```js import { useFetch } from 'ebosma/api'; const MyComponent = () => { const { data, loading, error } = useFetch('https://api.example.com/data'); if (loading) returnLoading...; if (error) returnAn error occurred; return (); };Fetched Data:
{JSON.stringify(data, null, 2)}
Found a bug or have a feature request? Open an issue on our GitHub.
� Report Issue