feat: add cluster list

This commit is contained in:
jialin
2025-09-16 11:26:17 +08:00
parent 43e1dd0b0e
commit 89001dbb92
24 changed files with 1695 additions and 110 deletions
@@ -0,0 +1,20 @@
import { WarningOutlined } from '@ant-design/icons';
import { Result } from 'antd';
import React from 'react';
const GGUFResult: React.FC = () => {
return (
<Result
status="info"
icon={
<WarningOutlined
style={{ color: 'var(--ant-color-text-quaternary)' }}
/>
}
title={false}
subTitle="GGUF model is not supported yet."
/>
);
};
export default GGUFResult;