You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
407 B

2 years ago
  1. // src/index.tsx
  2. import { useTask } from "@lishican/antbank-platform-hooks";
  3. import { Button } from "antd";
  4. import React from "react";
  5. import "./index.less";
  6. var HelloWorld = ({ name4 }) => {
  7. useTask();
  8. return /* @__PURE__ */ React.createElement("div", null, /* @__PURE__ */ React.createElement(Button, { type: "primary" }, name4));
  9. };
  10. var src_default = HelloWorld;
  11. export {
  12. src_default as default
  13. };