diff options
-rw-r--r-- | src/view/com/util/layouts/Breakpoints.tsx | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/view/com/util/layouts/Breakpoints.tsx b/src/view/com/util/layouts/Breakpoints.tsx index 51c3ccd5a..45dc23615 100644 --- a/src/view/com/util/layouts/Breakpoints.tsx +++ b/src/view/com/util/layouts/Breakpoints.tsx @@ -3,6 +3,9 @@ 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 +export const TabletOrMobile = ({children}: React.PropsWithChildren<{}>) => ( + <>{children}</> +) +export const Mobile = ({children}: React.PropsWithChildren<{}>) => ( + <>{children}</> +) |