mirror of
https://github.com/GiriNeko/YesPlayMusic.git
synced 2025-12-16 13:17:46 +00:00
17 lines
430 B
TypeScript
17 lines
430 B
TypeScript
import React from 'react'
|
|
import { ComponentStory, ComponentMeta } from '@storybook/react'
|
|
import NowPlaying from './NowPlaying'
|
|
|
|
export default {
|
|
title: 'NowPlaying',
|
|
component: NowPlaying,
|
|
parameters: {
|
|
viewport: {
|
|
defaultViewport: 'iphone8p',
|
|
},
|
|
},
|
|
} as ComponentMeta<typeof NowPlaying>
|
|
|
|
const Template: ComponentStory<typeof NowPlaying> = args => <NowPlaying />
|
|
|
|
export const Primary = Template.bind({})
|