@antmjs/vantui
Version:
一套适用于Taro3及React的vantui组件库
21 lines • 638 B
JavaScript
import { Button, Space } 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(Space, {
gap: 20,
children: [/*#__PURE__*/_jsx(Button, {
type: "primary",
children: "\u6309\u94AE----1"
}), /*#__PURE__*/_jsx(Button, {
type: "primary",
children: "\u6309\u94AE----2"
}), /*#__PURE__*/_jsx(Button, {
type: "primary",
children: "\u6309\u94AE\u2014---3"
}), /*#__PURE__*/_jsx(Button, {
type: "primary",
children: "\u6309\u94AE----4"
})]
});
}