@findify/react-components
Version:
Findify react UI components
12 lines (11 loc) • 304 B
JavaScript
/**
* @module components/common/Truncate
*/
import { Fragment } from 'react'; // TODO: implement actual truncation
import { jsx as _jsx } from "react/jsx-runtime";
export default (function (_ref) {
var children = _ref.children;
return /*#__PURE__*/_jsx(Fragment, {
children: children
});
});