tailwind-nextjs-blog/components/Image.tsx
Ivan Li dc0969d175
Some checks failed
🚀 Build and deploy by ftp / 🎉 Deploy (push) Failing after 8m24s
build(ci): 修复构建问题。
2023-09-10 11:29:01 +00:00

6 lines
122 B
TypeScript

import { Attributes } from 'react';
const Image = ({ ...rest }: Attributes) => <img {...rest} />;
export default Image;