memento-dev/app/components/common/Image.tsx

6 lines
207 B
TypeScript

import React from "react";
export function Image(props: { src: string; alt: string } & React.ComponentPropsWithoutRef<"img">) {
return <img {...props} src={props.src} alt={props.alt} loading="lazy" />;
}