24 lines
605 B
TypeScript
24 lines
605 B
TypeScript
// ============================================================
|
|
// RightPanel — 右列容器(输出预览)
|
|
// ============================================================
|
|
|
|
import { theme as antTheme } from 'antd';
|
|
import { OutputPreview } from './OutputPreview';
|
|
|
|
export function RightPanel() {
|
|
const { token } = antTheme.useToken();
|
|
|
|
return (
|
|
<div
|
|
style={{
|
|
height: '100%',
|
|
overflow: 'hidden',
|
|
borderRadius: 8,
|
|
border: `1px solid ${token.colorBorderSecondary}`,
|
|
}}
|
|
>
|
|
<OutputPreview />
|
|
</div>
|
|
);
|
|
}
|