@nicecode/funny
Version:
funny,一些有趣的代码,funny code
12 lines • 383 B
JavaScript
import React from 'react';
import "./index.less";
var AmazingCard = function AmazingCard(props) {
var _props$title = props.title,
title = _props$title === void 0 ? '-' : _props$title;
return /*#__PURE__*/React.createElement("div", {
className: "cont"
}, /*#__PURE__*/React.createElement("div", {
className: "amazingCard"
}, title));
};
export default AmazingCard;