React component (JSX) JavaScript
Snippet JavaScript untuk React component (JSX) yang menjawab request ke /pixel.gif dengan empty GIF, yang di-decode sekali saat startup.
React component (JSX) JavaScript
const EMPTY_GIF = 'data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==';
export function Spacer({ width = 1, height = 1, ...props }) {
return <img src={EMPTY_GIF} width={width} height={height} alt="" aria-hidden="true" {...props} />;
}
Kami telah menjalankan snippet ini dan membandingkan byte yang dikembalikannya.
Situs resmi: React component (JSX)