Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to include multiple resources in one component in react-admin?

Tags:

react-admin

Sometimes we want to see multilple business objects at once in an admin panel. For instance, I might want to display an customer profile along side with his/her list of accounting records. Or may be I want to keep an eye on both list of new cutomers and list of recent comments.

Is it possible to achieve with react-admin?

like image 698
user2625933 Avatar asked Aug 30 '25 16:08

user2625933


1 Answers

Yes. Have a look at the Demo's dashboard.

Get data from various sources with await dataProvider.getList(RESOURCE, PARAMS) and pass that data to various components that can be displayed on one page.

like image 103
BaliJack Avatar answered Sep 02 '25 18:09

BaliJack