@antmjs/vantui
Version:
一套适用于Taro3及React的vantui组件库
16 lines • 476 B
JavaScript
import { View } from '@tarojs/components';
import { Empty, Button } from '@antmjs/vantui';
import { jsx as _jsx } from "react/jsx-runtime";
export default function Demo() {
return /*#__PURE__*/_jsx(View, {
children: /*#__PURE__*/_jsx(Empty, {
description: "\u63CF\u8FF0\u6587\u5B57",
children: /*#__PURE__*/_jsx(Button, {
round: true,
type: "danger",
className: "bottomButton",
children: "\u6309\u94AE"
})
})
});
}