import { useWindow } from '@cap-rel/smartcommon'; function ResponsiveLayout({ children }) { const { width, height, isMobile, isTablet, isDesktop } = useWindow(); if (isMobile) { return {children}; } if (isTablet) { return {children}; } return {children}; } function WindowInfo() { const { width, height } = useWindow(); return

FenĂȘtre : {width} x {height}

; }