@mantine/core
Version:
React components library focused on usability, accessibility and developer experience
18 lines (14 loc) • 317 B
JavaScript
'use client';
;
var React = require('react');
function identity(value) {
return value;
}
function factory(ui) {
const Component = React.forwardRef(ui);
Component.extend = identity;
return Component;
}
exports.factory = factory;
exports.identity = identity;
//# sourceMappingURL=factory.cjs.map