enzyme-adapter-preact-pure
Version:
Enzyme adapter for Preact
11 lines (10 loc) • 327 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
/**
* Helper for the `wrappingComponent` option for shallow rendering which is
* used to locate the wrapped content in the output of a wrapper component.
*/
function RootFinder({ children, }) {
return children;
}
exports.default = RootFinder;