Home > Software engineering >  Empty FlatList React Native
Empty FlatList React Native

Time:09-30

I tried to make a D&D app with react native but when i try to render the code, the screen is empty but the console.log has the array in it, the code i use is:

export default () => {
  
    const [loading, setLoading] = useState(true)
    const [monsters, setMonsters] = useState([])
    console.log("           
  • Related