mirror of
https://github.com/AeThex-Corporation/AeThex-OS.git
synced 2026-04-19 23:07:21 +00:00
55 lines
1.5 KiB
TypeScript
55 lines
1.5 KiB
TypeScript
export function ProjectsAppWrapper() {
|
|
return (
|
|
<div className="h-full w-full overflow-auto">
|
|
<iframe src="/hub/projects" className="w-full h-full border-0" title="Projects" />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export function MessagingAppWrapper() {
|
|
return (
|
|
<div className="h-full w-full overflow-auto">
|
|
<iframe src="/hub/messaging" className="w-full h-full border-0" title="Messages" />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export function MarketplaceAppWrapper() {
|
|
return (
|
|
<div className="h-full w-full overflow-auto">
|
|
<iframe src="/hub/marketplace" className="w-full h-full border-0" title="Marketplace" />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export function FileManagerAppWrapper() {
|
|
return (
|
|
<div className="h-full w-full overflow-auto">
|
|
<iframe src="/hub/file-manager" className="w-full h-full border-0" title="File Manager" />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export function CodeGalleryAppWrapper() {
|
|
return (
|
|
<div className="h-full w-full overflow-auto">
|
|
<iframe src="/hub/code-gallery" className="w-full h-full border-0" title="Code Gallery" />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export function NotificationsAppWrapper() {
|
|
return (
|
|
<div className="h-full w-full overflow-auto">
|
|
<iframe src="/hub/notifications" className="w-full h-full border-0" title="Notifications" />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export function AnalyticsAppWrapper() {
|
|
return (
|
|
<div className="h-full w-full overflow-auto">
|
|
<iframe src="/hub/analytics" className="w-full h-full border-0" title="Analytics" />
|
|
</div>
|
|
);
|
|
}
|