I want to create an empty array object in react native that I want to populate with data from a sqlite table. I've searched on google but I only get responses like this.state={} or
this.state = { newArr: [] }, but I want to create an empty array of objects similar to
const [{ID:'', Name:'', Email:''}].
any idea how I can achieve this?