Ivan Li
dc0969d175
Some checks failed
🚀 Build and deploy by ftp / 🎉 Deploy (push) Failing after 8m24s
6 lines
122 B
TypeScript
6 lines
122 B
TypeScript
import { Attributes } from 'react';
|
|
|
|
const Image = ({ ...rest }: Attributes) => <img {...rest} />;
|
|
|
|
export default Image;
|