I am new with react native and I am trying to load a Json data containing a categories list and then trying to display their names. This is my code
import categories from '../Categories.json';
render () {
return (
<View>
{categories.map(ctegory => <Text> category.name </Text>)}
</View>
I get this error
undefined is not a function (near '..._Categories2.default.map...')
Do you have an idea on how to solve this?