24 lines
616 B
TypeScript
24 lines
616 B
TypeScript
// ============================================================
|
|
// CenterPanel — 中列容器(模型输入表单)
|
|
// ============================================================
|
|
|
|
import { theme as antTheme } from 'antd';
|
|
import { ModelInputForm } from './ModelInputForm';
|
|
|
|
export function CenterPanel() {
|
|
const { token } = antTheme.useToken();
|
|
|
|
return (
|
|
<div
|
|
style={{
|
|
height: '100%',
|
|
overflow: 'hidden',
|
|
borderRadius: 8,
|
|
border: `1px solid ${token.colorBorderSecondary}`,
|
|
}}
|
|
>
|
|
<ModelInputForm />
|
|
</div>
|
|
);
|
|
}
|