Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
export default function Redbag(props) {
const dataSource = props.sourceData[0];
if (!dataSource || !dataSource.appImg) {
return null;
}
const appUrl = dataSource.appUrl;
return (
<img style="{style.image}">
);
}