You're going to have to import Image
from the react-native
package like so then use it:
import { Image } from 'react';
<Image source={{uri: 'https://image-souce.com/awesomeImage'}} />
You can also use a local image with a slightly different syntax but same logic like so:
import { Image } from 'react';
<Image source={require('./img/myCoolImage.png')} />
Note:- You should give height, width to the image otherwise it won't show.