Skip to main content

How to use window size

create your app

import { useWindowSize } from 'rexr/react'

export const App = () => {
const { width, height } = useWindowSize()
return `${width} / ${height}`
}
1920 / 1080