how to use recyclerlistview in funtional component

240 Views Asked by At

I want use recyclerlistview in functional component in my app but i am not able to find proper example. any suggestions? My data set is

const data =
[
  {
    "key": "11",
    "id": 1,
    "name": "abc"
  },
  {
    "key": "12",
    "id": 2,
    "name": "xyz"
  },
]
0

There are 0 best solutions below