For using Epilogue with admin-on-rest, use the epilogueClient
function to convert AOR's REST dialect into one compatible with Epilogue.
npm install aor-epilogue-client --save
or
yarn add aor-epilogue-client
// 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;
This library is licensed under the MIT Licence