nsn-comp
Version:
NSN核心组件
15 lines (13 loc) • 498 B
JavaScript
import "antd/es/typography/style";
import _Typography from "antd/es/typography";
import { NConst } from 'nsn-const';
import React from 'react';
import './index.less';
var CLS_PREFIX = "".concat(NConst.CLS_PREFIX, "-content-preview");
var ContentPreview = function ContentPreview(_ref) {
var children = _ref.children;
return React.createElement("div", {
className: "".concat(CLS_PREFIX, "-pre")
}, React.createElement(_Typography.Text, null, children));
};
export default ContentPreview;