Files
Termix/src/ui/desktop/apps/host-manager/HostManagerApp.tsx
T

13 lines
320 B
TypeScript
Raw Normal View History

2026-03-14 20:05:05 -05:00
import { HostManager } from "@/ui/desktop/apps/host-manager/hosts/HostManager.tsx";
2026-01-24 19:49:42 -06:00
import React from "react";
const HostManagerApp: React.FC = () => {
return (
<div className="w-full h-screen">
<HostManager isTopbarOpen={false} onSelectView={() => {}} />
</div>
);
};
export default HostManagerApp;