@antmjs/vantui
Version:
一套适用于Taro3及React的vantui组件库
18 lines • 536 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, {
square: true,
type: "primary",
children: "\u65B9\u5F62\u6309\u94AE"
}), /*#__PURE__*/_jsx(Button, {
round: true,
type: "info",
children: "\u5706\u5F62\u6309\u94AE"
})]
});
}