Files
gridpilot.gg/apps/website/components/dashboard/DashboardRail.tsx
2026-01-18 16:18:18 +01:00

21 lines
466 B
TypeScript

import React from 'react';
import { Stack } from '@/ui/Stack';
interface DashboardRailProps {
children: React.ReactNode;
}
/**
* DashboardRail
*
* A thin sidebar rail for high-level navigation and status indicators.
* Uses UI primitives to comply with architectural constraints.
*/
export function DashboardRail({ children }: DashboardRailProps) {
return (
<Stack as="nav" h="full" align="center" py={4} gap={4}>
{children}
</Stack>
);
}