@nicecode/funny
Version:
funny,一些有趣的代码,funny code
15 lines • 494 B
JavaScript
import React, { useEffect } from 'react';
import "./index.less";
var HollowText = function HollowText(props) {
var _props$title = props.title,
title = _props$title === void 0 ? '' : _props$title;
useEffect(function () {}, []);
return /*#__PURE__*/React.createElement("div", {
className: "hollowText"
}, /*#__PURE__*/React.createElement("div", {
className: "bg"
}), /*#__PURE__*/React.createElement("div", {
className: "text"
}, title));
};
export default HollowText;