+ )
+}
+
+export default Simulation
diff --git a/src/components/Playground/Output/Preview/devices.ts b/src/components/Playground/Output/Preview/devices.ts
new file mode 100644
index 0000000..3243328
--- /dev/null
+++ b/src/components/Playground/Output/Preview/devices.ts
@@ -0,0 +1,114 @@
+export type DeviceName =
+ | 'iPhone SE'
+ | 'iPhone XR'
+ | 'iPhone 12 Pro'
+ | 'iPhone 14 Pro Max'
+ | 'Pixel 7'
+ | 'Samsung Galaxy S8+'
+ | 'Samsung Galaxy S20 Ultra'
+ | 'iPad Mini'
+ | 'iPad Air'
+ | 'iPad Pro'
+ | 'Surface Pro 7'
+ | 'Surface Duo'
+ | 'Galaxy Fold'
+ | 'Asus Zenbook Fold'
+ | 'Samsung Galaxy A51/71'
+ | 'Nest Hub'
+ | 'Nest Hub Max'
+
+export interface IDevice {
+ name: DeviceName
+ width: number
+ height: number
+}
+
+const devices: Record