@antmjs/vantui
Version:
一套适用于Taro3及React的vantui组件库
18 lines • 541 B
JavaScript
/* eslint-disable */
import { View } from '@tarojs/components';
import { Button } from '@antmjs/vantui';
import { jsx as _jsx } from "react/jsx-runtime";
import { jsxs as _jsxs } from "react/jsx-runtime";
export default function Demo() {
return /*#__PURE__*/_jsxs(View, {
children: [/*#__PURE__*/_jsx(Button, {
disabled: true,
type: "primary",
children: "\u7981\u7528\u72B6\u6001"
}), /*#__PURE__*/_jsx(Button, {
disabled: true,
type: "info",
children: "\u7981\u7528\u72B6\u6001"
})]
});
}