How to use window size
create your app
import { useWindowSize } from 'rexr/react'
export const App = () => {
const { width, height } = useWindowSize()
return `${width} / ${height}`
}
import { useWindowSize } from 'rexr/react'
export const App = () => {
const { width, height } = useWindowSize()
return `${width} / ${height}`
}