UNPKG

@codinix/device-mockup

Version:

Beautiful responsive mockups for phone, tablet, laptop and desktop — React components, no images needed.

9 lines (8 loc) 230 B
import React from "react"; type DeviceType = "phone" | "tablet" | "laptop" | "desktop"; interface DeviceProps { type: DeviceType; children: React.ReactNode; } export declare const Device: React.FC<DeviceProps>; export {};