about summary refs log tree commit diff
path: root/src/view/com/util/layouts/Breakpoints.tsx
blob: 51c3ccd5af84476be46b5d6bb28021516ae8c64d (plain) (blame)
1
2
3
4
5
6
7
8
import React from 'react'

export const Desktop = ({}: React.PropsWithChildren<{}>) => null
export const TabletOrDesktop = ({}: React.PropsWithChildren<{}>) => null
export const Tablet = ({}: React.PropsWithChildren<{}>) => null
export const TabletOrMobile = ({children}: React.PropsWithChildren<{}>) =>
  children
export const Mobile = ({children}: React.PropsWithChildren<{}>) => children