If the component is the default export:
jest.mock("./MyComponent", () => () => <div>Hello World</div>);
If the component is a named export:
jest.mock("./MyComponent", () => ({
MyComponent: () => <div>Hello World</div>
}));
If the component is the default export:
jest.mock("./MyComponent", () => () => <div>Hello World</div>);
If the component is a named export:
jest.mock("./MyComponent", () => ({
MyComponent: () => <div>Hello World</div>
}));