fix: 修复

This commit is contained in:
2023-04-19 03:55:24 +08:00
parent c70bd748bf
commit 774922bbd4
18 changed files with 56 additions and 29938 deletions

8
packages/bizComponent/es/index.d.ts vendored Normal file
View File

@@ -0,0 +1,8 @@
import React from 'react';
import './index.less';
declare const HelloWorld: React.FC<{
name4: string;
age3: string;
}>;
export default HelloWorld;
//# sourceMappingURL=index.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAQ,cAAc,CAAC;AAEvB,QAAA,MAAM,UAAU,EAAE,KAAK,CAAC,EAAE,CAAC;IAAE,KAAK,EAAE,MAAM,CAAC;IAAA,IAAI,EAAC,MAAM,CAAA;CAAE,CAQvD,CAAC;AACF,eAAe,UAAU,CAAC"}

View File

@@ -0,0 +1,13 @@
// 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
};

View File

@@ -0,0 +1,6 @@
.red {
color: red;
display: flex;
justify-content: center;
align-items: center;
}