mirror of
https://github.com/LukeHagar/unicorn-utterances.git
synced 2025-12-10 04:22:06 +00:00
10 lines
189 B
TypeScript
10 lines
189 B
TypeScript
jest.mock("next/image", () => {
|
|
const React = require("react");
|
|
|
|
return function NextImage(props: any) {
|
|
return <img {...props}>{props.children}</img>;
|
|
};
|
|
});
|
|
|
|
export default {};
|