Files
unicorn-utterances/__mocks__/modules/next-image.tsx
Corbin Crutchley 25ba994325 chore: fix tests
2022-01-08 15:00:23 -08:00

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 {};