
* implement table of contents * refactor by review comments * refactor by review comments * lint * minor fix --------- Co-authored-by: bniwredyc <bniwredyc@gmail.com>
5 lines
188 B
TypeScript
5 lines
188 B
TypeScript
import { createMediaQuery } from '@solid-primitives/media'
|
|
|
|
export const isMobile = createMediaQuery('(max-width: 767px)')
|
|
export const isDesktop = createMediaQuery('(min-width: 1200px)')
|