refine-jsonapi
is a data provider for refine that provides an implementation for working with JSON API specifications that conform to a standard API design. It is built on the foundation of the JSON:API specifications.
Install refine-jsonapi
via npm:
npm install refine-jsonapi
import dataProvider from "refine-jsonapi";
const App = () => {
return (
<Refine
dataProvider={dataProvider("API_URL")}
/* ... */
>
{/* ... */}
</Refine>
);
};
- For more detailed information and usage, refer to the refine data provider documentation.
- Refer to documentation for more info about refine
- Step up to refine tutorials.