import type { Meta, StoryObj } from '@storybook/react'; import MobileSkin from './MobileSkin'; import React from 'react'; const meta: Meta = { title: 'Components/MobileSkin', component: MobileSkin, parameters: { layout: 'padded', }, tags: ['autodocs'], }; const randomImage: string = 'https://plus.unsplash.com/premium_photo-1664303228186-a61e7dc91597?q=80&w=1384&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D'; type Story = StoryObj; const defaultArgs = { mobileWidth: 220, mobileHeight: 448, children:

No Data Found

, }; export const PortraitView: Story = { args: { ...defaultArgs, orientation: 'portrait', }, }; export const LandscapeView: Story = { args: { ...defaultArgs, orientation: 'landscape', }, }; export default meta;