2.0.1 • Published 5 years ago

ra-ror-jsonapi-client v2.0.1

Weekly downloads
5
License
ISC
Repository
github
Last release
5 years ago

Rails JSON API REST client for react-admin.

A JSONAPI compatible adapter for react-admin that allows for rapidly building admin interfaces in React using the RA framework.

Installation

ra-ror-jsonapi-client is available from npm. You can install it (and its required dependencies) using:

npm install ra-ror-jsonapi-client

It can also be installed using yarn:

yarn add ra-ror-jsonapi-client

Usage

//in app.js
import React from "react";
import { Admin, Resource } from "react-admin";
import dataProvider from "ra-ror-jsonapi-client/build/restClient";

const restClient = jsonAPIRestClient("http://localhost:3000");

const App = () => (
  <Admin dataProvider={dataProvider}>
    ...
  </Admin>
);

export default App;