0.3.1 • Published 6 years ago

aor-epilogue-extended-client v0.3.1

Weekly downloads
2
License
MIT
Repository
github
Last release
6 years ago

Epilogue client for admin-on-rest

For using Epilogue with admin-on-rest, use the epilogueClient function to convert AOR's REST dialect into one compatible with Epilogue.

Installation

npm install aor-epilogue-client --save
or
yarn add aor-epilogue-client

Usage

// in src/App.js
import React from 'react';
import { Admin, Resource } from 'admin-on-rest';
import epilogueClient from 'aor-epilogue-client';
import { PostList } from './posts';

const App = () => (
    <Admin restClient={epilogueClient('/my_epilogue_endpoint')}>
        <Resource name="posts" list={PostList} />
    </Admin>
);

export default App;

License

This library is licensed under the MIT Licence