Scrum4Me/components/shared/min-width-banner.tsx
Scrum4Me Agent f555cb547b refactor(PBI-49): migrate 17 shared/ components to debugProps helper
Replace hardcoded data-debug-id + data-debug-label attribute pairs with
{...debugProps(id, component, file)} spread in all 17 components/shared/
files. Existing debug-ids preserved unchanged.
2026-05-09 20:47:51 +02:00

15 lines
531 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', 'MinWidthBanner', 'shared/min-width-banner.tsx')}
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>
)
}