Files
DevReport/src/components/Setting/index.tsx

17 lines
349 B
TypeScript
Raw Normal View History

2025-04-24 19:13:20 +08:00
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;