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.
15 lines
531 B
TypeScript
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>
|
|
)
|
|
}
|