Spaces:
Sleeping
Sleeping
File size: 414 Bytes
cce8120 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | "use client";
import useModels from "../../hooks/useModels";
export default function ProductionModelsWorkspace(){
const {loading}=useModels();
return(
<div className="w-full h-full bg-zinc-950 text-white">
<div className="border-b border-zinc-800 p-4 text-xl font-semibold">
AI Models Manager
</div>
<div className="p-4">
{loading ? "Loading..." : "Production AI Model Manager Ready"}
</div>
</div>
);
}
|