tsp-component
Version:
提供多端和react版本的UI组件
13 lines (12 loc) • 437 B
JavaScript
import * as React from 'react';
import classNames from 'classnames';
var prefix = 'tsp-component-Placeholder';
var Placeholder = function (props) {
return (React.createElement("div", { className: classNames((_a = {},
_a[prefix] = true,
_a[props.className] = props.className,
_a[prefix + "-animation"] = props.animation,
_a)) }));
var _a;
};
export default Placeholder;