Looking to create a list with inner scroll and a search input at the top in antd4 and react. How can I achieve this like shown in the image below?
Example of a scrollable section sketch:
https://i.sstatic.net/a6lat.png
I have searched through antd components but couldn't find one that fits my need.
I want to avoid using the following code in CSS:
maxHeight: 200, overflow: 'auto'
Is there an alternative solution without having to write custom CSS? (Prefer to utilize antd components with minimal customization)