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