import type { ReactNode } from 'react'; export function ErrorRail({ children }: { children: ReactNode }) { return (
Error
{children}
); }