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

21 lines
451 B
TypeScript

import { Stack } from '@/ui/Stack';
import React from 'react';
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 align="center" gap={4} fullWidth>
{children}
</Stack>
);
}