i have images in sqlserver as a binary, how can i display them in reactJs?
i tried the following but doesn't work
<Image source={{ uri: `data:image/jpeg;base64,${results.student_photo}` }} />
i also tried
const base64Image = {results.student_photo};
<Image source={{uri: `data:image/jpeg;base64,${base64Image}`}} />