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
13 lines
407 B
// src/index.tsx
|
|
import { useTask } from "@lishican/antbank-platform-hooks";
|
|
import { Button } from "antd";
|
|
import React from "react";
|
|
import "./index.less";
|
|
var HelloWorld = ({ name4 }) => {
|
|
useTask();
|
|
return /* @__PURE__ */ React.createElement("div", null, /* @__PURE__ */ React.createElement(Button, { type: "primary" }, name4));
|
|
};
|
|
var src_default = HelloWorld;
|
|
export {
|
|
src_default as default
|
|
};
|