Image source Prop
Learn the correct shape of the Image source prop for network images.
Codejavascript
import React from 'react';
import { Image } from 'react-native';
export default function Avatar() {
return (
<Image
source="https://example.com/a.png"
style={{ width: 50, height: 50 }}
/>
);
}What is the bug in this code?