React component (JSX) JavaScript
一个用于 React component (JSX) 的 JavaScript 代码片段,以空 GIF 响应对 /pixel.gif 的请求,GIF 在启动时只解码一次。
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} />;
}
我们运行了此代码片段,并比对了它返回的字节。