import type React from "react"; import { DeviceContext } from "@core/providers/useDevice.js"; import type { Device } from "@core/stores/deviceStore.js"; export interface DeviceProps { children: React.ReactNode; device: Device; } export const DeviceWrapper = ({ children, device, }: DeviceProps): JSX.Element => { return ( {children} ); };