I want to create a dynamic component and it should dynamically take title and description and show it instead of the static default text of ‘no rows to show’
So for the time being you can directly add template over here
gridOptions: GridOptions = {
...
overlayNoRowsTemplate: `<div class="flex flex-col items-center">
<img src="assets/images/folder-plus.svg" alt="No data" class="w-10 h-10 text-gray-400">
<p class="font-bold text-xl text-gray-500 py-3">No data found</p>
<p class="text-base text-gray-400">Data does not exist for selected filters.</p>
</div>`,
...
}
But now if you want to add a dynamic component over here with title and description so how to do that ?