Am using Expo React Native and Native Base library,
While am trying to loop through an array to output Tabs (each user have his own number of tabs)
<Tabs>
{sectionsTabs.map(section => <Tab
heading={section.section_name}
style={{backgroundColor: '#0e0e0e'}}
>
<Text>{section_id}</Text>
</Tab>)}
</Tabs>
SectionsTabs is an array
Below is the error message am getting