Scrum4Me/components/shared/min-width-banner.tsx
Scrum4Me Agent 7ceefd4409 refactor(PBI-49): strip unused component/file args from debugProps in shared/
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-09 21:33:03 +02:00

15 lines
482 B
TypeScript

'use client'
import { debugProps } from '@/lib/debug'
// Shows a warning banner on screens narrower than 1024px.
export function MinWidthBanner() {
return (
<div
{...debugProps('min-width-banner')}
className="lg:hidden bg-warning/10 border-b border-warning/30 px-4 py-2 text-center text-xs text-warning"
>
Scrum4Me is ontworpen voor schermen van minimaal 1024px breed. Sommige functies zijn mogelijk niet goed bruikbaar op dit scherm.
</div>
)
}