Imports

Currently, modi exports typical React Native components.

You can import like so:

import { View, Text, ScrollView, SafeAreaView, Image } from 'moti'

Since this might collide with the names of your React Native components, I would import them like this:

import { View as MotiView } from 'moti'

Which looks like this:

<MotiView />