tailwind-nextjs-blog/components/Image.tsx

6 lines
122 B
TypeScript
Raw Normal View History

2023-09-10 19:29:01 +08:00
import { Attributes } from 'react';
2023-09-10 19:29:01 +08:00
const Image = ({ ...rest }: Attributes) => <img {...rest} />;
2023-08-16 23:55:57 +08:00
export default Image;