I am new to react hooks. We are developing a react based application without redux. We have a single page where we have different components like search, filters, grid, pagination etc.
Whenever we does any action on page , Grid should get refreshed with that action props.
For Example, when i do search on page, the grid should refresh with search props. And i apply any filter on page, the grid should refresh with filter props and search props as-well.
So, all the actions state should be available in all individual components to cal the Grid refresh api with appropriate props.
Could you please help me in understanding how we can maintain the state of whole page at each component level .