I'm importing your library:
import {Row, Col} from 'react-native-flexbox-grid';
But when I try to nest a column inside a Row like this (or with multiple columns):
<Row>
<Col sm={5}>
<Text>
First Column
</Text>
</Col>
</Row>
I get an error:
Element type is invalid: expected a string (for built-in components) or a class/function (for composite components) but got undefined.
It only works if I use Row by itself.
I'm using react-native version: 0.44.0