mirror of https://github.com/webpack/webpack.git
11 lines
327 B
JavaScript
11 lines
327 B
JavaScript
import React from "react";
|
|
import ComponentA from "containerA/ComponentA";
|
|
import ComponentB from "containerB/ComponentB";
|
|
import LocalComponentB from "./ComponentB";
|
|
|
|
export default () => {
|
|
return `App rendered with [${React()}] and [${ComponentA()}] and [${ComponentB()}]`;
|
|
};
|
|
|
|
expect(ComponentB).not.toBe(LocalComponentB);
|