mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-04-24 00:17:47 -04:00
41 lines
1.0 KiB
TypeScript
41 lines
1.0 KiB
TypeScript
import { PropsWithChildren, ReactNode, Suspense } from 'react';
|
|
import { Outlet } from 'react-router';
|
|
import { useOperatingSystem } from '~/hooks/useOperatingSystem';
|
|
|
|
import DragRegion from '../../../components/DragRegion';
|
|
import Sidebar from './Sidebar';
|
|
|
|
export const Component = () => {
|
|
return (
|
|
<div className="app-background flex w-full flex-row">
|
|
<Sidebar />
|
|
<div className="relative w-full">
|
|
<Suspense>
|
|
<DragRegion className="absolute inset-x-0 top-0 z-50 h-8" />
|
|
<Outlet />
|
|
</Suspense>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
interface HeaderProps extends PropsWithChildren {
|
|
title: string;
|
|
description: string | ReactNode;
|
|
rightArea?: ReactNode;
|
|
}
|
|
|
|
export const Heading = (props: HeaderProps) => {
|
|
return (
|
|
<div className="mb-3 flex">
|
|
{props.children}
|
|
<div className="grow">
|
|
<h1 className="text-2xl font-bold">{props.title}</h1>
|
|
<p className="mt-1 text-sm text-gray-400">{props.description}</p>
|
|
</div>
|
|
{props.rightArea}
|
|
<hr className="mt-4 border-gray-550" />
|
|
</div>
|
|
);
|
|
};
|