While practicing programming with React-Native, I encountered a problem that I couldn't figure out how to solve. I attempted to use solutions from various forums, but none of them worked.
import { StyleSheet, Text, View, Image } from 'react-native'
import React from 'react'
import Logo from '../../assets/images/possible.jpg';
const Login = () => {
return (
<View>
<Image source={Logo} style={styles.logo} resizeMode='contain' />
</View>
)
}
This is the first time I've come across typescript, so I'm not sure if the issue could be related to ts?