mirror of
https://github.com/makeplane/plane.git
synced 2026-06-14 03:30:00 +00:00
15 lines
403 B
TypeScript
15 lines
403 B
TypeScript
"use client";
|
|
|
|
import React from "react";
|
|
|
|
// Minimal shim so code using next/image compiles under React Router + Vite
|
|
// without changing call sites. It just renders a native img.
|
|
|
|
type NextImageProps = React.ImgHTMLAttributes<HTMLImageElement> & {
|
|
src: string;
|
|
};
|
|
|
|
const Image: React.FC<NextImageProps> = ({ src, alt = "", ...rest }) => <img src={src} alt={alt} {...rest} />;
|
|
|
|
export default Image;
|