chatgpt-web / src /hooks /useBasicLayout.ts
imseldrith's picture
Upload with huggingface_hub (#1)
3d83f0d
raw
history blame
231 Bytes
import { breakpointsTailwind, useBreakpoints } from '@vueuse/core'
export function useBasicLayout() {
const breakpoints = useBreakpoints(breakpointsTailwind)
const isMobile = breakpoints.smaller('sm')
return { isMobile }
}