import { Button } from '@/components/ui/button'; import { Input } from '@/components/ui/input'; import { AddModelCard, ModelLibraryCard, SystemModelSetting, } from './model-card'; const addedModelList = new Array(4).fill(1); const modelLibraryList = new Array(4).fill(1); export default function ModelManagement() { return (

Team management

Added model

{addedModelList.map((x, idx) => ( ))}

Model library

{modelLibraryList.map((x, idx) => ( ))}
); }