'use client'; import React from 'react'; import { ErrorBanner } from './ErrorBanner'; interface AuthErrorProps { action: string; } export function AuthError({ action }: AuthErrorProps) { return ( ); }