Files
Athou_commafeed/commafeed-client/src/components/responsive/OnMobile.tsx
2025-07-29 15:28:52 +02:00

13 lines
289 B
TypeScript

import { Box } from "@mantine/core"
import type React from "react"
import { useMobile } from "@/hooks/useMobile"
export function OnMobile(
props: Readonly<{
children: React.ReactNode
}>
) {
const mobile = useMobile()
return <Box>{mobile && props.children}</Box>
}