@matt-dunn/react-wireframes
Version:
React component to annotate your components — useful for prototypes and proof of concepts
19 lines (15 loc) • 390 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.withWireframeAnnotation = void 0;
/** !
* Copyright (c) 2019, Matt Dunn
*
* @author Matt Dunn
*/
/* istanbul ignore file */
var withWireframeAnnotation = function withWireframeAnnotation(WrappedComponent) {
return WrappedComponent;
};
exports.withWireframeAnnotation = withWireframeAnnotation;