background image is asking for import react props code example
Example 1: display image base64 in REACT NATIVE
const encodedBase64 = 'R0lGODlhAQABAIAAAAAA...7';
<Image source={{uri: `data:image/gif;base64,${encodedBase64}`}} />
Example 2: how to import background image in inline css in react
style={{backgroundImage: `url(${pencil})`}}