Data Service
config/dataService.ts
import { RestDataService } from '@headless-adminapp/app/transport/RestDataService';
export const dataService = new RestDataService({
endpoint: '/api/data', // The endpoint to the data service
});
Register Data Service
<LayoutProvider
dataService={dataService}
...
>
...
</LayoutProvider>