Estoy usando React JS en Laravel, creé un componente funcional con el archivo de extensión JSX e intenté usar una variable simple pero no pude usar eso en la etiqueta HTML.
import React from 'react'; //functional component const HeaderComp = () => { const MIX_APP_URL = process.env.MIX_APP_URL; console.log(MIX_APP_URL);//here working fine return ( <header> {/*Here not working*/} <img src="{MIX_APP_URL}" className="img img-fluid" /> </header> ); };