项目初始化

This commit is contained in:
Ben
2025-04-24 19:13:20 +08:00
parent dd49a93045
commit 33cc46f03e
49 changed files with 6914 additions and 4 deletions

View File

@@ -0,0 +1,16 @@
import type React from "react";
import { Card, Input } from "antd";
interface SettingProps {
className?: string;
}
const Setting: React.FC<SettingProps> = ({ className }) => {
return (
<Card title="设置" className={`${className} size-full`}>
<Input addonBefore="Key" defaultValue="" />
</Card>
);
};
export default Setting;